User Profile & Activity

Handy Surya Support
Page
of 223
Posted: July 13, 2010 4:12 AM

Hello Ca,

There is no way to refresh WebGrid suddenly via button in server side. But you can refresh WebGrid by using WebGrid1.ClientAction.Refresh();. It only can be used if WebGrid has a flypostback (client) request.

Regards,
Handy

Posted: July 12, 2010 11:21 PM

Unfortunately, I am not able to replicate it in my sample. So, would you mind to share with us?

Regards,
Handy

But as you can see at previous post, the structure is not completed. Please resend it as attachment.

Regards,
Handy

Posted: July 11, 2010 10:56 PM

Hi,

Is the result only happening at the first load? If yes, would you mind to share with me how do you integrate your WebContext menu?

Regards,
Handy

Posted: July 11, 2010 10:35 PM

Hello,

I can replicate the issue in here. The issue would be forwarded to our developer. I will let you know when the fix is ready.

Regards,
Handy

Posted: July 11, 2010 10:32 PM

Hello,

Unfortunately, there is no such function other than my previous workaround.
If you want to select the value at the page load, you can simply to use WebCombo1.Value (server side).
But as default, the data would be loaded when the user type something at the textbox or click on dropdown.

Regards,
Handy

Posted: July 9, 2010 2:04 PM

When you opened new added window, it will just automatically maximize. Because the show and maximize function are called too fast, it is showed not good. To avoid this, you need to set delay/timeout.

Here, I changed your code.

 function AddWindow(url, caption) {
            var dm = window.frames[1].ISGetDesktopManager(); 
            var wnd = dm.CreateWindow();
           
            wnd.Caption = caption;
            wnd.ContentURL = url;
            wnd.ContentMode = "UseIFrame";
            dm.Windows.Add(wnd);
            wnd.Show();
            
            window.setTimeout(function() { wnd.Maximize(); }, 300);
           
 }

 Hope this helps.

Regards,
Handy

Posted: July 8, 2010 3:29 PM

Please open our sample GroupColumnThatUseWebValueList.aspx. We also support valuelist for grouping.

Hope this helps.

Regards,
Handy

Posted: July 8, 2010 3:22 PM

Hello Huzefa,

You would need to know what is the code of your culture. You would be saver to use designer first to know the code of the culture.

As I said before, Open WebGrid Designer>>LocalizationManager>>Use the physical settings>>Manage LanguageFiles. Choose add a new language files. It will pop up a dropdown for you to choose the culture.

After that go to C:\Program Files\Intersoft Solutions\WebUI Studio for ASP.NET\CommonLibrary\WebGrid\V7_0_7200\Localization.

If you open list.xml, you can see that the new collection has been added. 

e.g I added "Saudi Arabia" and it should be like the tag below.

<LanguageFile name="Arabic (Saudi Arabia)" filename="wglang_ar-SA.xml" culture="ar-SA">
</LanguageFile>


Please see filename attribute in the tag. You will need to add your own language text in wglang_ar-SA.xml. If you trouble to find the content, please read default.xml as the guidance.

Regards,
Handy

Posted: July 8, 2010 2:49 PM

Thank you for being detail. I can reproduce the error in here. It seems XHTML issue. Please do not use XHTML doctype for now. I forwarded this issue to our developer teams.

Regards,
Handy

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