目的: V30702C – 識別證刷卡後,加入store 且 輸入欄位,重新FOCUS
Try to focus this component.
Ext.getCmp("sub_TAMAN").on('blur', function (me, eOpts) {
目的: V30702C – 識別證刷卡後,加入store 且 輸入欄位,重新FOCUS
Try to focus this component.
目的: V30702A – [收單執行]鈕 – 刷識別證 – store 資料重複,則不允許加入 store
目的: V30701A – 回覆訊息,按[確定]鈕後,再繼續往下執行(關閉子視窗 & 主畫面重新顯示)
目的: V30702A – 子畫面 – 含 Grid & V30702E – 一般Form
目的: V30702A - 由識別證卡號取得員工編號
A web service is a function that can be accessed by other programs over the web (Http).
To clarify a bit, when you create a website in PHP that outputs HTML its target is the browser and by extension the human being reading the page in the browser.
A web service is not targeted at humans but rather at other programs.
So your PHP site that generates a random integer could be a web service if it outputs the integer in a format that may be consumed by another program. It might be in an XML format or another format, as long as other programs can understand the output.
Wsdl is the interface and that's all you need. Good thing is that it is written in xml… so that we can achieve independence of defining data. All the languages have got APIs to read Xmls.(so that's the advantage of xml).
Now…the clients gets the wsdl and generates the stub code… this code is responsible for mediating the request response between server and client.