User Profile & Activity

Niven Prasetya Member
Page
of 25
Posted: December 8, 2010 4:58 AM

Hi Bill,

You can set the TopMost property of UXDialogBox to true to the last popup dialog box.

Please let me know if this works on your side.

Thank you and have a nice day.

Regards,
Niven.

Posted: December 8, 2010 4:26 AM

Hello,

I've tried your scenario but it seems that this issue is not replicate on my side.

May I know what build and version are you using? The ClientSide method should be no effect on the connection issue I recall.

I will try to investigate more futher regarding this issue. I will let you know if I get similar issue like you experienced.

Thank you and have a nice day.

Regards,

Niven.

Posted: December 8, 2010 3:26 AM

Hi Shawn,

The 'this.Column.ColumnType' is null or not an object because the it cant find the NewRow.

What if I suggest you using the one at our WebGrid's sample, Client_ProgrammaticEdit?

Hope this helps.

Thank you.

Regards,
Niven.

Hi Shawn,

Since the DropDownList object already embedded in WebGrid's object it would be more efforts to get dropdown list object. I suggest you to use the WebCombo control by using the following code on OnRowSelect client-side event.

 

function WebGrid1_OnRowSelect(controlId, tblName, rowIndex, rowEl) {
            var WebGrid1 = ISGetObject(controlId);
//            WebGrid1.GetSelectedObject().ToRowObject().GetCells()[2].SetText("Condiments", true);
            return true;
        }

And I for your second problems, I did not replicate on my side. Have you use the latest build?

Thank you and have a nice day.

Regards,
Niven.

Posted: December 8, 2010 2:06 AM

Hi Frank,

Unfortunately, the sample you had given to me can't be achieve on client-side and also the given sample using the ISDataSource FilterExpression property to deal with specific scenario automatically and actually an SQL statement.

But the custom filter still need to be set up on server-side.

Thank you and have a nice day.

Regards,
Niven.

Posted: December 6, 2010 3:02 AM

Hi Frank,

For applying custom filter on WebGrid, you can follow our WebGrid's documentation on Walkthrough: Applying Custom Filtering in WebGrid.

Please let me know if this the one you wanted.

Thank you and have a nice day.

Regards,
Niven

 
Posted: December 5, 2010 11:01 PM

Hi Terry,

Unfortunately, The now UXTextBox control can't handle the masked input yet. but we will deliver a specific control to handle a formatted scenario, such as currency on our next released 2010 R2.

Hope this helps.

Thank you and have a nice day.

Regards,
Niven.

Posted: December 5, 2010 10:53 PM

Hi Terry,

Unfortunately, We are not support this control yet. but we will deliver the control for date entry on the next release, 2010 R2 which will be announced on this upcoming date.

Please stay tuned.

Thank you and have a nice weekend.

Regards,
Niven.

 

 

Posted: December 2, 2010 11:11 PM

Hi Shawn,

No, this is not the same as the server code that you currently using. On your code, you only hide the style of the new row. But my code access the object of the new row and set it to hidden. This is why when you click on the row's initial state, it still can access the new row because you only hide the new row. not the row's initial state style. FYI, we do not support the row's initial state yet.

Regarding, the grid.Refresh(); will refresh only the WebGrid or else you will see a gap down the webgrid. However, this refresh method has no relationship with postback.

Hope this can clear your question.

Regards,
Niven.

Posted: December 1, 2010 3:34 AM

Hi Shawn,

I believe you can't achieve that on server side.

After I investigate further, why the row's initial column be able to be invoked because the code you give to me only access the new row not the row header(row's initial column). And we have not supported the row header yet.

Please try the following solution to hide the new row on window::onload method.

function window::onload(){
    var grid = ISGetObject("WebGrid1");
    grid.RootTable.GetNewRow().style.display = "none";
    grid.Refresh();
}

Hope this helps. Please let me if this works on your side or not.

Thank you and have a nice day.

Regards,
Niven.

All times are GMT -5. The time now is 10:22 PM.
Previous Next