User Profile & Activity

Riendy Setiadi Member
riendy@intersoftpt.com
Page
of 19
Posted: April 27, 2011 5:03 AM

Hi Vantu,

I also created WebParts project that contains WebGrid and using Northwind.mdb. Unfortunately, I could not replicate your issue on my end.

Attached is my simple sample. Am I missing something here ?


Riendy

Hello Robert

I tried in a simple sample based on your issue but I could not replicate it. 
Would you like to attach a sample ?

Regards,
Riendy
Posted: April 26, 2011 11:14 PM

Hi Vantu,

I tried a simple sample but I could not replicate it.

Here I attached my simple sample using Northwind.mdb. Do I need any setting to replicate the issue ? Or is it possible for you ?


Regards,

Riendy

Posted: April 26, 2011 10:45 PM

Hello Francis,

To correct your problem, you should open web.config on your website folder.

Then delete the following path :

1. ISChart.axd

2. WebFileUploaderHttpHandler.axd

3. ISScheduler.axd

4. ISCoverFlow.axd

5. WebFilerUploaderHttpModule

Or you can see tag bellow :


<add path="ISChart.axd" verb="GET" type="ISNet.WebUI.WebGrid.Chart.ChartRequestHandler, ISNet.WebUI.WebGrid" validate="true" />
<add path="WebFileUploaderHttpHandler.axd" verb="GET" type="ISNet.WebUI.WebTextEditor.WebFileUploaderHttpHandler, ISNet.WebUI.WebTextEditor" />
<add path="ISScheduler.axd" verb="GET" type="ISNet.WebUI.WebScheduler.WebSchedulerRequestHandler, ISNet.WebUI.WebScheduler" validate="true" />
<add path="ISCoverFlow.axd" verb="GET" type="ISNet.WebUI.Silverlight.WebAqua.WebCoverFlowRequestHandler, ISNet.WebUI.Silverlight.WebAqua" validate="true" />
<add name="WebFileUploaderHttpModule" type="ISNet.WebUI.WebTextEditor.WebFileUploaderHttpModule, ISNet.WebUI.WebTextEditor" />


Hope this helps.

Regards,

Riendy

Posted: April 26, 2011 3:17 AM

Hi Tariq,

could you please describe more details about your scenario? I tried to use your current code but unable to understand your current scenario. Some of your codes used Telerik, which I don't have any of Telerik control. Does your current scenario have some issue when closing a WebDesktopWindow, or WebDialogBox? It would be better if you could provide us a simple runable sample that can describe the scenario more clearly.

regards,

Riendy

Posted: April 25, 2011 11:40 PM

Hello Kenneth,

I tried to make a simple sample based on your issue but I couldn't replicate it.

Attached is my simple sample, Is it possible for you to replicate the issue in my sample?

Could you please let me know your current environment ?


Regards,

Riendy

Hi, 

I have forwarded this issue to our development team to be investigated further.

I will tell you soon when I get the update from them.


Regards,

Riendy


Hello Sachin,

To move column and its value from one position to another position you can change datamember and caption. Or you can get the ColumnCollection first, then remove and insert to the desired position.

You can see the snippet code bellow

protected void WebGrid1_PrepareDataBinding(object sender, ISNet.WebUI.WebGrid.DataSourceEventArgs e)

    {

WebGrid1.RetrieveStructure();

       // exchange column index 5 to column index 0

string Member;

        string caption;

       // exchange DataMember column index 5 to column index 0

        Member = WebGrid1.RootTable.Columns[5].DataMember;

        WebGrid1.RootTable.Columns[5].DataMember = WebGrid1.RootTable.Columns[0].DataMember;

        WebGrid1.RootTable.Columns[0].DataMember = Member;

// exchange Caption column index 5 to column index 0

        caption = WebGrid1.RootTable.Columns[5].Caption;

        WebGrid1.RootTable.Columns[5].Caption = WebGrid1.RootTable.Columns[0].Caption;

        WebGrid1.RootTable.Columns[0].Caption = caption;

    }

-----------------------------------------------------------------------------------------------

protected void WebGrid1_PrepareDataBinding(object sender, ISNet.WebUI.WebGrid.DataSourceEventArgs e)

    {

        WebGrid1.RetrieveStructure();

        WebGridColumnCollection columnCollection = WebGrid1.RootTable.Columns;

        // move ContactName column to the 1st position

        WebGridColumn contactName = columnCollection.GetNamedItem("ContactName");

        columnCollection.Remove(contactName);

        columnCollection.Insert(0, contactName); // 0 is an index

    }

  

Hope this helps.

Regards,

Riendy

Hello Durga,

Unfortunately WebAcordion does not support percent. 

So far, our developer are not planning to support percent for WebAccordion yet.

if you want, you can post this as a feature request.
Regards,
Riendy

Hello Scott,

I've tested your sample page in chrome and it is running well.

May I know your Chrome version and webgrid 7 build version ?

I used chrome 10.0.648.205


Regards,

Riendy

All times are GMT -5. The time now is 8:25 AM.
Previous Next