[progress Communities] [progress Openedge Abl] Forum Post: Re: Need Sample Code To Retieve...

  • Thread starter Thread starter egarcia
  • Start date Start date
Status
Not open for further replies.
E

egarcia

Guest
Hello, I do not have a specific example but the following information may help you. Since these are input fields, a simple way is to use jQuery val() or Kendo UI value() methods to query the value. Examples: $("#field").val() or $("#field").data(" ").value() Another alternative, is to use value binding in Kendo UI. In this case, the values from the screen are kept in sync with a model. Then you would just access the values in the model. The mvvm demo page example shows this: Here are some references: demos.telerik.com/.../index demos.telerik.com/.../source docs.telerik.com/.../value To pass a parameter to the PASOE backend using the JSDO, for a READ operation, you could use the filter() or the query() method in the Kendo UI DataSource. See the following thread for info on the JSON Filter Pattern which is needed to support filter: community.progress.com/.../23201 Also check the following thread for this approach: community.progress.com/.../79151 If you prefer to use an INVOKE operation instead of the READ operation. Then you can create a JSDO directly and use the invoke() method to call the backend to get the result. Notice that these records are not automatically placed in the JSDO memory. For the invoke operations, you could take a look at the Kendo UI Pie Chart and Kendo UI Bar Chart samples at the following URL: oemobiledemo.progress.com/.../index.html I hope this helps.

Continue reading...
 
Status
Not open for further replies.
Back
Top