jQWidgets Forums
Forum Replies Created
-
Author
-
July 9, 2014 at 8:41 pm in reply to: jqxDropDownButton Grid Popup Model dialog issue jqxDropDownButton Grid Popup Model dialog issue #56957
Hi Peter,
Today I came across issue. When I use JQXWindow with jqxDropDownButton control, after couple of uses Div which I am using for
model popup, does not contain in DOM. And I get error
Uncaught Error: Invalid jQuery Selector – #CopyContainer! Please, check whether the used ID or CSS Class name is correct.
Is there any thoughts?
Thanks
PankyJuly 8, 2014 at 2:07 pm in reply to: jqxDropDownButton Grid Popup Model dialog issue jqxDropDownButton Grid Popup Model dialog issue #56890Thanks Peter !!
I used JQXwindow and it worked fine, only I did extra work to style JQXWindow to match my application styling.
Thanks again !!
Panky
May 1, 2014 at 4:26 pm in reply to: JQXGrid with Fiter and Paging Get RowIndex JQXGrid with Fiter and Paging Get RowIndex #53837Ohhh I have to do below to get current rowIndex
I am doing this in cellclick event of grid cell
function RowEdit(event) {
if (event.args.columnindex == 0) {
var dataRecord = jqxgFabric.jqxGrid(‘getrowdata’, event.args.rowindex);
var gridData = jqxg.jqxGrid(‘getdisplayrows’);Enumerable.From(gridData).ForEach(function(d) {
if (d.DetailID == dataRecord.DetailID) {
$(‘#txtCurrentIndex’).val(d.boundindex);
}
});
}
}March 11, 2014 at 4:20 pm in reply to: bindingcomplete, addfilter, filtervalue bindingcomplete, addfilter, filtervalue #50865Awesome Thanks Peter !!
-Panky
March 7, 2014 at 6:51 pm in reply to: bindingcomplete, addfilter, filtervalue bindingcomplete, addfilter, filtervalue #50704Hi
Can we remove or rename the ‘Please chose’ option in a list-filtertype?
-Panky
January 10, 2014 at 3:43 am in reply to: ERROR in GRID jqxgrid.filter.js ERROR in GRID jqxgrid.filter.js #47653Thanks Peter,
But I want to use v 3.0.4 which we upgraded last month and spend most time on regression testing of whole application,
each month we can not spend same amount of time.Is there stable version?
Thanks
PankyDecember 18, 2013 at 7:33 pm in reply to: jqxGrid auto column width with jqWidgets 3.0.3 jqxGrid auto column width with jqWidgets 3.0.3 #46735Hi Peter,
If I keep width: ‘100%’, instead of width: 670, then I have to mention width of each column in %, otherwise
it shows blank column at the end.
I m using v 3.0.4.
Thanks
PankyOctober 15, 2013 at 8:27 pm in reply to: JQxGrid with filtertype: ‘checkedlist’ JQxGrid with filtertype: ‘checkedlist’ #30771Any one ??
-Panky
October 10, 2013 at 2:41 pm in reply to: JQxGrid with filtertype: ‘checkedlist’ JQxGrid with filtertype: ‘checkedlist’ #30566Thanks Peter,
There is $(‘#jqxGrid’).jqxGrid({ filtermode: ‘excel’});
What exactly it does ? I am looking for same filter operation as Excel.
If I filter records on one column, other column filter shows unique values of the cells.
appreciate your reply.
Thanks
PankyOctober 8, 2013 at 3:32 pm in reply to: JQX Tabs background-color change JQX Tabs background-color change #30436Just noticed.
Tab Control looses applied CSS class when you add/remove tabs.
I managed to make it work.
-Panky
October 8, 2013 at 2:17 pm in reply to: JQX Tabs background-color change JQX Tabs background-color change #30431Awsome 🙂
Thanks Dimitar
I did below to make it work for me
Defined a css class
.selected
{
background-color: green;
}Remove “Selected” class from all tabs if they has
var len = $(‘#jqxTabs’).jqxTabs(‘length’);
for (var i = 1; i < len – 2; i++) {
if ($('#jqxTabs .jqx-tabs-title:eq(' + i + ')').hasClass("selected"))
$('#jqxTabs .jqx-tabs-title:eq(' + i + ')').removeClass("selected");
}Add Selected Class to newly selected Tab
$("#jqxTabs .jqx-tabs-title:eq(" + newIndex + ")").addClass("selected");Thanks again !!
Thanks
PankyOctober 8, 2013 at 1:31 pm in reply to: Dropdownlist getItemByText Dropdownlist getItemByText #30425Thanks Peter,
It would be nice to have that method.
-Panky
October 7, 2013 at 8:17 pm in reply to: JQX Tabs background-color change JQX Tabs background-color change #30367Thanks Dimitar,
Sample looks gud, but I want to set it in JS , I tried something as below, but no luck
var len = $(‘#jqxTabs’).jqxTabs(‘length’);
for (var i = 1; i < len – 2; i++) {
$('#jqxTabs .jqx-tabs-title:eq(' + i + ')').css("background-color", "transparent");$('#jqxTabs .jqx-tabs-title-selected-top:eq(' + i + ')').css("background-color", "transparent");
$('#jqxTabs .jqx-tabs-title-hover-top:eq(' + i + ')').css("background-color", "transparent");}
I have to this bqz, at first time based on value coming from DB , I will set tab title BG Green, but after words
when user mark another Tab as Final then , I have to mark all tabs to original style [which I have in my custom css file generated from Theme builder]
then mark new tab title BG green.
Thanks
PankyOctober 7, 2013 at 7:32 pm in reply to: Dropdownlist getItemByText Dropdownlist getItemByText #30366Then I have to do
Enumerable.From($(“#jqxddl”).jqxDropDownList(‘getItems’)).ForEach(function(item) {
if (item.label == e.State)
$(“#jqxddl”).jqxDropDownList(‘removeItem’, item);
});But it throws exception removeItem is undefined.
October 4, 2013 at 7:43 pm in reply to: Tab Title change based on content [drop down value] change. Tab Title change based on content [drop down value] change. #30263Hi
I did this as below.
On Selection changed in my IFrame page js function I called patent.SetTabTitle(newtitle)
and in Patent JS file in SetTabTitle(title) function I set New Title of Tab using SettitleAt method.
-Panky
-
AuthorPosts