jQWidgets Forums
Forum Replies Created
-
Author
-
November 4, 2013 at 11:20 am in reply to: how to restrict jqxradiobutton navigable by keyboard tab key how to restrict jqxradiobutton navigable by keyboard tab key #31863
Thank you…
using the latest version of jQWidgets library solved the problem.November 2, 2013 at 3:59 am in reply to: how to restrict jqxradiobutton navigable by keyboard tab key how to restrict jqxradiobutton navigable by keyboard tab key #31822i’ve tried the example above,it is also not working. still iam able to navigate through keyboard tab.
October 21, 2013 at 6:15 am in reply to: how to select a cell in jqxgrid programatically how to select a cell in jqxgrid programatically #31083Thank you
October 17, 2013 at 11:54 am in reply to: server side validation in jqxgrid editing server side validation in jqxgrid editing #30928Thank you
April 17, 2013 at 7:11 am in reply to: applying filter programatically on an event applying filter programatically on an event #19404i have a grid with 2 columns. i want to get all the records which satisfy filter criteia of first column or filter criteria of second column… both filtering criteria individually anc combined result…. is it possible?
April 17, 2013 at 4:55 am in reply to: on rowselect event firing twice on rowselect event firing twice #19395sorry, i defined on row select event in a js function… i replaced it in $(document).ready(function () {} function.. and it is working fine…
thank you.April 11, 2013 at 10:48 am in reply to: displaying the waiting circle while grid takes time to populate displaying the waiting circle while grid takes time to populate #19055can i convert the above program to suit my requirement…. how to do the ajax binding through data adapter…
i tried putting my webservice address (“ShopCodes.asmx/getDelays”) to url field of soure and datatype to json… but i did not get the resultApril 11, 2013 at 9:22 am in reply to: displaying the waiting circle while grid takes time to populate displaying the waiting circle while grid takes time to populate #19051iam doing the way shown below.. it is not displaying any loading image…
var myarray = new Array();
$.ajax({
type: “POST”,
url: “ShopCodes.asmx/getDelays”,
data: ”,
contentType: “application/json; charset=utf-8”,
dataType: “json”,
success: function(data) {var myArray = new Array();
var count =0;
var msg = eval(data.d);
for(i=0; i< msg.length; i++)
{
var row = {};row["del_date"] = new String(msg[i].del_date);
row["shop_code"] = new String(msg[i].shop_code);
row["shop"] = new String(msg[i].shop);
row["material"] = new String(msg[i].material);row["rake"] = new String(msg[i].rake);
row["delay_from"] = new String(msg[i].delay_from);
row["delay_to"] = new String(msg[i].delay_to);
row["delay_durn"] = new String(msg[i].delay_durn);row["cum_delay"] = new String(msg[i].cum_delay);
row["eqpt"]= new String(msg[i].eqpt);
row["sub_eqpt"]= new String(msg[i].sub_eqpt);row["remarks"] = new String(msg[i].remarks);
row["delay_det_code"] = new String(msg[i].delay_det_code);
row["agency_code"] = new String(msg[i].agency_code);row["delay_freq"] = new String(msg[i].delay_freq);
row["expected_doc"] = new String(msg[i].expected_doc);
row["continued"] = new String(msg[i].continued);
row["eff_duration"] = new String(msg[i].eff_duration);myarray[i] = row;
};
// alert(t1);
//alert(myarray);
var source =
{
localdata: myarray,datafields:
[
{ name: 'del_date', type: 'date',format: 'dd/MM/YYYY' },
{ name: 'shop_code', type: 'string' },
{ name: 'shop', type: 'string' },
{ name: 'material', type: 'string' },
{ name: 'rake', type: 'string' },
{ name: 'delay_from', type: 'float' },
{ name: 'delay_to', type: 'float' },
{ name: 'delay_durn', type: 'float' },
{ name: 'cum_delay', type: 'float' },
{ name: 'eqpt', type: 'string' },
{ name: 'sub_eqpt',typ:'string'},
{ name: 'remarks', type: 'string' },
{ name: 'delay_det_code', type: 'string' },
{ name: 'agency_code', type: 'string' },
{ name: 'delay_freq', type: 'number' },
{ name: 'expected_doc', type: 'string' },
{ name: 'continued', type: 'char' },
{ name: 'eff_duration', type: 'float' }
],
datatype: "array"
};
var dataAdapter = new $.jqx.dataAdapter(source);
$("#jqxgrid").jqxGrid(
{
width: 750,
source: dataAdapter,
theme: theme,
columnsresize: true,
pageable: true,
autoheight: true,
filterable: true,
sortable: true,
altrows: true,
enabletooltips: true,autoshowfiltericon: true,
columns: [
{ text: 'Delay Date',datafield: 'del_date', cellsformat: 'dd-MM-yyyy',width: 100 },
{ text: 'Shop Code',datafield: 'shop_code', width: 50 },
{ text: 'Shop',datafield: 'shop', width: 70 },
{ text: 'Material', datafield: 'material',width: 80 },{ text: 'Rake', datafield: 'rake',width: 40 },
{ text: 'Delay From',datafield: 'delay_from', width: 80 },
{ text: 'Delay Upto',datafield: 'delay_to', width: 80 },
{ text: 'Durn', datafield: 'delay_durn',width: 80},{ text: 'Cum Delay', datafield: 'cum_delay',width: 100 },
{ text: 'Eqpt', datafield: 'eqpt',width: 80},
{ text: 'Sub Eqpt', datafield: 'sub_eqpt',width: 80 },
{ text: 'Descr',datafield: 'remarks', width: 120 },
{ text: 'Delay Code',datafield: 'delay_det_code', width: 100 },{ text: 'agency', datafield: 'agency_code',width: 100 },
{ text: 'Freq', datafield: 'delay_freq',width: 80 },
{ text: 'Close Dt', datafield: 'expected_doc',width: 80},
{ text: 'Contd', datafield: 'continued',width: 80},{ text: 'Eff Durn', datafield: 'eff_duration',width: 100 }
]
});April 10, 2013 at 6:55 am in reply to: how to get the entered text in jqxcombobox how to get the entered text in jqxcombobox #18952iam populating the combobox from a select box in which first entry is empty one… after removing that it is displaying correctly
April 10, 2013 at 5:39 am in reply to: how to get the entered text in jqxcombobox how to get the entered text in jqxcombobox #18941one of my combobox is displaying its elements small and merged….
April 9, 2013 at 12:36 pm in reply to: how to get the entered text in jqxcombobox how to get the entered text in jqxcombobox #18897i have copied the new version’s jqwidget folder in place of old one…
it didnt worked well…. my website was changed….
do i need to upgrade my jquery library also to jquery-1.9.1.min, iam using 1.8.3.min…..April 9, 2013 at 12:20 pm in reply to: how to get the entered text in jqxcombobox how to get the entered text in jqxcombobox #18893Thank you
April 9, 2013 at 11:42 am in reply to: how to get the entered text in jqxcombobox how to get the entered text in jqxcombobox #18889no it is not displaying anything
my combobox is loaded from a select box with autocomplete enabled, it has got 5 entries like [displaymember, valuemember]
i entered something(xyz) which is not matched to any displaymember.now i want to get what is entered in the combobox (i.e. xyz)
March 12, 2013 at 8:27 am in reply to: validate a column based on other column validate a column based on other column #16786for getrowdata or getcellvalue we need to have row id, but in the validation function, how can we get the current row id?
March 11, 2013 at 9:47 am in reply to: populating a combobox cell based on other cell values in a grid populating a combobox cell based on other cell values in a grid #16653Thank you,
it worked for me -
AuthorPosts