jQWidgets Forums
Forum Replies Created
-
Author
-
Hi Peter,
Can you explain what the ‘ii’ does in to following statement in your example:$result->bind_param(‘ii’, $start, $pagesize);
I can see that $start, $pagesize replace the ?, ? in the $mysqli->prepare( statement, but google is not helping me understand the ‘ii’ parameter.
many thanks,
jonathanJanuary 13, 2017 at 9:36 pm in reply to: Difference between 'refreshdata' and 'updatebounddata'? Difference between 'refreshdata' and 'updatebounddata'? #90590also bump peter !
if we’re here, then we’re not understanding the documentation.
I’m here because i want to re-point a jqxDataTable (not grid) from one url json data source to another and refresh the displayed results.
$(“#dataTable”).jqxDataTable(‘updateBoundData’); is not producing any change (the same data is loading).
do i need to create 2 dataAdapters – or am i missing something ?enjoying the product
jonathanJanuary 11, 2017 at 11:31 pm in reply to: How to re-arrange column programmatically? How to re-arrange column programmatically? #90512Hi, is there a way to get an array holding the displayed order of the columns ?
also, i’d like to access similar arrays for the user’s entries into the advanced search filter boxes.
i could dig around the DOM, but its not a reliable method
thanks,
jonathanMarch 16, 2015 at 12:40 am in reply to: how to get the entered text in jqxcombobox how to get the entered text in jqxcombobox #68568Thanks,
while i agree that the function works in the jsfiddle, i’m still getting ‘undefined’ in my own code (which uses a json source).
i am able to use a bit of string handling to extract the value=”” when i usevar value = $("#myComboBox").html();
but i would like to know wherevar value = $("#myComboBox").val();
is failing.I have the latest version of jqx.
jonathan.
March 12, 2015 at 2:16 pm in reply to: how to get the entered text in jqxcombobox how to get the entered text in jqxcombobox #68422var value = $("#myComboBox").myComboBox('val');
orvar value = $("#myComboBox").val();
are returning a value of ‘undefined’
if i try
var value = $("#myComboBox").html();
i get a big block of html (mainly css) and i can see value=”the value i want” in there.any ideas ?
thanks -
AuthorPosts