User Profile & Activity

Handy Surya Support
Page
of 223
Posted: February 28, 2011 10:09 PM

Hello Matt,

Please see BatchUpdate.aspx in our WebTreeView sample. You can AddNode or RemoveNode. When made selection expand or collapse the node, then postback, the state would be still remained.

Regards,
Handy

Posted: February 28, 2011 6:22 AM

Hello,

Unfortunately, that is already the best we can offer in AutoComplete. When using AutoComplete feature, user also should know that there is also a timeout until the list of data back from database. So, It is acceptable I think. Navigate to fill the form faster as you did in video, is not the common way to do.
User also has a little time when typing the text.
Here is the link to have LoadOnDemand.

In the updated sample, I also can run it without issue. The label is updated and I don't get any javascript error regarding the date. 
Please ensure you have used the latest hotfixes of WebUIFramework, WebCombo, and WebInput.

If the issue still persists, please send me the recording video. Maybe I am missing something in replicating the issue.

Regards,
Handy

Hello,

Currently, we don't have a proper property to handle this style.
I tested to change it via element but it seems the style is overriden by disable attribute from the browser.
After change the disable attribute, I am able to change it color.

var navPane = ISGetObject("WebNavPane1")
navPane.BarItems[0].Items[2].GetElement().style.color = "Red";
navPane.BarItems[0].Items[2].GetElement().disabled = false;

 

Regards,

Handy

Posted: February 28, 2011 1:36 AM

Hello Michael,

Would you mind to let us know your machine environment?

Regards,
Handy

Posted: February 28, 2011 12:59 AM

Hello Eric,

Thank you for the detaisl. I will forward this to our developer teams.

Regards,
Handy

Hello,

This cannot be done in server side. You only can do it in client side with OnAfterInitialize event and run below code.

var grid=ISGetObject("WebGrid1");
grid.GotoPage(2);

Regards,
Handy


Hello,

Unfortunately, this is already beyond of control. You would need to discuss with Visual Studio team.
However, If Visual Studio supports this font, you should be able to use it in WebInput.
One thing you need to know, all styles such as font family are supported. As long as, you can also define it in CSS. 
If you try to define Helvetica font and run in the browser, would it run the style or the default?

Regards,
Handy

Posted: February 25, 2011 1:09 AM

Hello Eric,

Ok, Can you let us know your WebGrid settings? You haven't answered that yet. I might also need your web.config. Maybe other settings in your application can also cause this issue.

Regards,
Handy

Posted: February 25, 2011 1:04 AM

Hello David,

I am afraid this is not possible. If you inspect the element, it is using table as the container. It would be difficult. Event if you can move it, it would mess up the layout. 

Regards,
Handy

Posted: February 25, 2011 12:55 AM

Hello Huzefa,

About AutoComplete behaviour, it is not a bug. It works correctly fine. 
The issue you faced when focus, is closely due to the network latency.

i.e, the result is returned from server slower than tabbing out.

But, once again, this would not work as fast you wanted to do because AutoComplete is designed to complete the text from database list. If the result is returned slower than tabbing out, you will get the focus issue that you mentioned. Perhaps, you would like to use InstantLookup mode.

About updating the label in your sample, please try to add below code. It should work fine.
  protected void cmbPaints_ValueChanged(object sender, ValueChangedEventArgs e)
        {
            cmbColor.Value = "5";
            cmbColor.RequiresUIRefresh = true;
            cmbColor.DataBind();
            cmbColor2.Value = "7";
            cmbColor2.RequiresUIRefresh = true;
            cmbColor2.DataBind();
            dtEffectDate.Value = DateTime.Now.ToString();
            dtEffectDate.RequiresUIRefresh = true;
            lblSelected.Text = "Select paint is => ";
            txtMain.Text = cmbPaints.Text;
            fpb.ClientAction.MarkDirty(txtMain);
        }

For javascript error that you faced in Date, please send me a sample that replicates the error.
I would like to have the same thing with 'update only some parts in WebFlyPostBackManager' issue.
I need the sample to investigate your issue.

Regarding LoadData in WebCombo, it is already WebCombo behaviour.
More safely, if you put in correct events (InitializeDataSource).
Of course you can also improve the performance.
You can handle your own query freely by using AllowAutoQueryHandler false and LoadOnDemand. You can also read about how to improve WebCombo performance in our documentation.


Regards,
Handy

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