Search Results

Type: Posts; User: Nime

Page 1 of 2 1 2
Search took 0.01 seconds.
  1. Hi all



    I don't know what I did but now, codebehind and designer.cs support is gone, a control that I add doesn't appear in designer.cs code and codebehind.cs doesn't support last added...
  2. Thread: Radiobutton.Value

    by Nime
    Radiobutton.Value is always true (if checked) or false (not checked). In classical html, a radiobutton may has any value.

    In a RadioGroup, it's hard to determine which radiobutton is checked. If...
  3. ### I cannot delete this post so I clear all text, please ignore ###
  4. Hi all




    I tried to save a form but all fields seem empty at the server side.
    All form fields return nothing. They seem like the form has been reset
    when event called... Any idea?
  5. I noticed that Ext.JS alert box and JS' alert have different behaviors. alert waits for input, Ext.Msg.alert does not.

    So users miss the alert message before redirect:




    ...
  6. Thread: RadiobuttonGroup

    by Nime
    That's it:



    radGeziDurumu.Items.ForEach(checkbox => checkbox.Checked = checkbox.ID == "radGeziDurumu" + radGeziDurumu.Value ? true : false);
  7. Thread: RadiobuttonGroup

    by Nime
    Any advise to check the right radiobutton in a group? I found a Flex example that's what I said before; it has a selectedValue property. That property automatically clears the buttons & check one of...
  8. Hi

    I just noticed I can't modify the code behind file page.aspx.cs during debug. It's locked. However I can modify any inline code in page.aspx


    In VS 2008 Options > Debugging > Edit &...
  9. 1. Use all 'windows' in same aspx. It increases your code lines.

    2. Or use a container panel to use inline frame:



    <ext:Portlet
    ID="Portlet1"
    Title="Google Search"
    ...
  10. I think you should embed the JS part in <header> part, and insert <div id="map">
    into the panel's body :




    <ext:Panel
    ID="Panel1"
    runat="server"
    Height="150"
  11. Thread: RadiobuttonGroup

    by Nime
    Hi all !


    I cannot clear a radiobuttongroup.checkeditems:


    After the line radButtons.CheckedItems.Clear(); CheckedItems.Count is still > 0


    I have to set unchecked all buttons manually:
  12. I think Store and SqlDataReader are used for gridview part of the example.
  13. I've chosen GridPanel with Form Details example. I just tried to emulate Employee Details in a seperate page. However I used SqlDataSource instead of Linq.


    <script runat="server">
    ...
  14. I used SqlDataSource1 and Store1 (I snipped them from the examples) to load data and update form fields. It seems there is no simple way to bind data, I can fill gridview but how can I fill form...
  15. Thread: Set value inline

    by Nime
    Thany you for quick responses. With AutoDataBind = true, I got the memberID too.
  16. Thread: Set value inline

    by Nime
    Hmmm, now I'm in a very strange situation. I used a hidden field, set it in page load but

    e.ExtraParams["memberID"] returns "hidMemberID.getValue()" in ajax event's function Refresh


    Why...
  17. Thread: Set value inline

    by Nime
    Is it possible to insert any server side value instead of clientside? May I embed memberID at runtime?



    Coolite: <ext:Parameter Name="geziID" Value=""<%=this.geziID%>" /> code generates...
  18. Thread: Set value inline

    by Nime
    I need to set an AJAX parameter inline. I tried a few things but no luck.


    Value="#this.memberID"
    Value="#memberID"
    Value="#{memberID}"

    ie...

    I want to click a button then refresh the...
  19. As you know printing reports or docs from a website is a headache. Imagine that you have many document types to be printed on different printers &amp; paper formats, how do you handle all of them? Do you...
  20. Thread: Input changed

    by Nime
    var hiliteChanged = function(id, value) {
    var el = &#100;ocument.getElementById(id);
    if (el.value != value) {
    el.addClass('x-grid3-dirty-cell');
    }
    else
    {
    ...
  21. Thread: Input changed

    by Nime
    var hiliteChanged = function(id, value) {
    var el = &#100;ocument.getElementById(id);
    if (el.value != value) {
    el.addClass('x-grid3-dirty-cell');
    }
    else
    {
    ...
  22. Thread: Input changed

    by Nime
    Imagine a simple form which one has two textboxes (with values) and a button. You right I think I have to write a listener function which one checks if original value changed. Maybe it increases the...
  23. Thread: Input changed

    by Nime
    I need to hilite text or mark textbox if it's original value has changed (in a form). I may change the text color or textbox's class to notice (like editable datagrid's small triangle). I can compare...
  24. Error 1 'Coolite.Ext.Web.ScriptManager' does not contain a definition for 'Locale' and no extension method 'Locale' accepting a first argument of type 'Coolite.Ext.Web.ScriptManager' could be found...
  25. Hi davidhoyt

    I got an error in your .zip file when I run:

    A Control with an ID of "ctl00_content_FileUploadDialog1" has already been initialized. Please ensure that all Controls have a unique...
Results 1 to 25 of 34
Page 1 of 2 1 2