User Profile & Activity

Dicky S Support
Page
of 8

Hi Michael,

Our dev team just fixed this bug report. The hotfix file will be available in our upcoming build number of WebGrid 7.0.


Best Regards,

Dicky

HI Mike,

Yes on NewRow and on FilterRow you can use OnCellSelect event since both object always selected as a row object. I suggest you to use OnRowSelect client side event to check the type of selected row. Here the code snippet:

function WebGrid1_OnRowSelect(controlId, tblName, rowIndex, rowEl)
{
	var WebGrid1 = ISGetObject(controlId);
	var selectedRow = WebGrid1.GetSelectedObject().ToRowObject();
	alert(selectedRow.Type);
	return true;
}

And about selecting GroupHeader it should be worked too with those code snippets. Hope this helps.

Posted: September 15, 2009 11:17 PM

Hi,

You can try to handle your sorting scenario in level DataSet with DataView or you can also use WebGrid sorting feature. You can add this settings on OnPrepareDataBinding event in WebGrid:

WebGridGroup wgGroup = new WebGridGroup();
wgGroup.ColumnMember = "City";
wgGroup.SortOrder = SortOrder.Descending;

WebGrid1.RootTable.SortedColumns.Add(wgGroup);

Hope this helps.

Posted: September 14, 2009 9:22 PM

Hi Greg,

Yes, it should be solved after apply latest WebUI Framework.

Regards,

Dicky

Posted: September 11, 2009 5:47 AM

You can set DialogBoxImage property to custom and specify path of your custom image on CustomDialogBoxImage property like showed in attached image.

Hope this helps.


Posted: September 10, 2009 10:45 PM

Hi Zahid,

I suggest you to manage this in WebGrid level using this way:

function Button1_onclick()
{
    var grid = ISGetObject("WebGrid1");
    grid.UndoAllChanges();
}

Hope this helps.

Posted: September 10, 2009 10:16 PM

Hi Zahid,

I think your question is similar with other posted thread which you can check at this link. Maybe you can join to this thread to avoid redundancy information. 


Best Regards,

Dicky

Posted: September 9, 2009 11:42 PM

Hi Eric,

Nice to meet you in our community page.

Yes, we aware for this issue. There are some layouting issues when open our website in IE6. The reason already explained by our Technical Team.

Thanks for your valueable feedback, we will enhance the website to give an alert to the user if they use elder browser's version. And we will try to fix fallen down floating content for IE6 so at least user get the basic structures correctly.

Tips for you: if you can't install higher browser application, maybe you can try to use Portable Browser application which allow you to run the browser without install it first. But not sure how strict the security policy in your company.

 

Regards,

Dicky

Hi Michael,

How do you set cellstyle align center in checkbox column? Do you set it programmatically? if yes, in which event do you set it?

Posted: September 8, 2009 9:57 PM

Oh sorry it was for debug mode only. I have around 28 resources here and I putted debugger inside for loop, so rather I catch by debugger 28 times I add -27 on the loop. I'm glad it works at your end.

All times are GMT -5. The time now is 7:39 AM.
Previous Next