Telerik Forums
UI for ASP.NET AJAX Forum
2 answers
161 views
When adding a LinkButton to a GridDataItem in an ajaxified RadGrid, it causes a full postback.  I do not want a full postback. 
This is my code:

private
void GridItem_ItemCreated(object sender, GridItemEventArgs e)
        {
            if (e.Item is GridDataItem)
            {
                GridDataItem item = (e.Item as GridDataItem);
                 
 
                    //cannot .Clear() expand/collapse item
                    item["ExpandColumn"].Controls[0].Visible = false;
 
                    LinkButton expand = CreateLinkButton();
                    expand.CommandArgument = _expandText;
                    expand.ID = _btnExpand;
                    item["ExpandColumn"].Controls.Add(expand);
                     
                    LinkButton collapse = CreateLinkButton();
                    collapse.CommandArgument = _collapseText;
                    collapse.ID = _btnCollapse;               
                    item["ExpandColumn"].Controls.Add(collapse);
 
                    //hide collapse on load
                    item["ExpandColumn"].Controls[2].Visible = false;
 
                    foreach (Control control in item["ExpandColumn"].Controls)
                    {
                        RadAjaxManager RadAjaxManager1 =                RadAjaxManager.GetCurrent((System.Web.UI.Page)System.Web.HttpContext.Current.Handler);
                        RadAjaxManager1.AjaxSettings.AddAjaxSetting(control, (sender as RadGrid));
                    }
                }
}

I've even tried the below on RadGrid_PreRender with no luck

private void RadGrid_PreRender(object sender, EventArgs e)
        {
            RadAjaxManager RadAjaxManager1 = RadAjaxManager.GetCurrent((System.Web.UI.Page)System.Web.HttpContext.Current.Handler);
            RadAjaxManager1.AjaxSettings.AddAjaxSetting((Control)sender, (Control)sender);
           RadAjaxManager1.EnableAJAX = true;
        }

Katie Arnott
Top achievements
Rank 1
 answered on 15 Apr 2013
3 answers
204 views
Hello,

I'm using a grid in which I'm implementing custom filtering as shown in the documentation and in the online demos, but I'm having some difficulties in making it work properly.

My grid is defined as follows (to try and make it clearer, I'm only copying the impacted column):
<telerik:RadGrid ID="grdBusinessRoles" runat="server" AllowMultiRowSelection="false"
AllowFilteringByColumn="true" ShowFooter="false" AllowSorting="True" AutoGenerateColumns="False"
AllowPaging="true">
<MasterTableView AutoGenerateColumns="false" EditMode="InPlace" TableLayout="Auto"
CommandItemDisplay="Top" DataKeyNames="BusinessRoleId2,BusinessRoleId" PageSize="15">
<CommandItemTemplate>
<asp:LinkButton runat="server" ID="btnClear" Text="Clear Filters" CommandName="ClearFilters" />
</CommandItemTemplate>
<Columns>
<telerik:GridBoundColumn UniqueName="colStream" DataField="StreamName" HeaderText="Stream"
SortExpression="StreamName" ReadOnly="true">
<FilterTemplate>
<telerik:RadComboBox ID="rcbStreams" DataTextField="Value" DataValueField="Value"
AppendDataBoundItems="true" AutoPostBack="false" SelectedValue='<%# TryCast(Container, GridItem).OwnerTableView.GetColumn("colStream").CurrentFilterValue %>'
runat="server" OnClientSelectedIndexChanged="SelectedIndexChanged">
<Items>
<telerik:RadComboBoxItem />
</Items>
</telerik:RadComboBox>
<telerik:RadScriptBlock ID="RadScriptBlock1" runat="server">
<script type="text/javascript">
function SelectedIndexChanged(sender, args) {
var tableView = $find("<%# TryCast(Container, GridItem).OwnerTableView.ClientID %>");
tableView.filter("colStream", args.get_item().get_value(), "EqualTo");
}
</script>
</telerik:RadScriptBlock>
</FilterTemplate>
</telerik:GridBoundColumn>
</Columns>
<NoRecordsTemplate>
<asp:Label runat="server" ID="lblNoRecords" Text="No Business Roles found."></asp:Label>
</NoRecordsTemplate>
<PagerStyle PageSizeControlType="RadComboBox" />
</MasterTableView>
<PagerStyle Mode="NextPrevAndNumeric"></PagerStyle>
<FilterMenu EnableImageSprites="False">
</FilterMenu>
<ClientSettings EnableRowHoverStyle="true">
<Selecting AllowRowSelect="true" />
</ClientSettings>
</telerik:RadGrid>

This grid is contained in a user control, which is contained in another user control, as follows (ucBusinessRoles is the user control containing the grid):
<!-- Select Business Roles -->
<telerik:RadWindow runat="server" ID="wdwBusinessRoles" Modal="true" Width="820px"
   Height="500px" Behaviors="Close" CssClass="RadWindow_Pram">
   <ContentTemplate>
      <telerik:RadAjaxPanel ID="pnlBusinessRoles" runat="server">
      <pram:ucBusinessRoles ID="ucSelectBusinessRole" runat="server" TypeOfList="AssignRoleVariants"
         TypeOfSelection="SingleSelection" AllowNavigation="False" AllowNewBusinessRole="False" />
      </telerik:RadAjaxPanel>
      <telerik:RadButton ID="btnAddRolesToList" runat="server" Text="Select Role" CssClass="RadButton_Pram submit" />
   </ContentTemplate>
</telerik:RadWindow>

The RadComboBox used for filtering is bound to a dictionary, as follows:
Protected Sub grdBusinessRoles_ItemCreated(ByVal sender As Object, ByVal e As GridItemEventArgs) _
   Handles grdBusinessRoles.ItemCreated
 
   If TypeOf (e.Item) Is GridFilteringItem Then
      Dim filterItem As GridFilteringItem = CType(e.Item, GridFilteringItem)
      Dim combo As RadComboBox = CType(filterItem("colStream").FindControl("RadComboBoxClientName"), RadComboBox)
 
      combo.DataSource = Streams ' This is a Dictionary(Of Decimal, String)
      combo.DataValueField = "value"
      combo.DataTextField = "value"
   End If
 
End Sub

And the whole grid is bound in the NeedDataSource event.

The grid is displayed correctly and the drop-down list is populated correctly, but if I select a in the drop-down list to filter by it, then the grid refreshes and all the records are "filtered" (so it doesn't matter which value I select for filtering: I will always get no results, even if the list contains valid items), so the filtered grid will always be empty (see attachments).

I've tried several approaches and followed the tutorials and demos, but I couldn't get this working.

What am I doing wrong?

Thanks in advance.

Elliott
Top achievements
Rank 2
 answered on 15 Apr 2013
4 answers
279 views
I have a RadNumericTextBox defined as so:

<telerik:RadNumericTextBox
    runat="server"
    ID="_tbTickerSpeed"
    ShowSpinButtons="True"
    Label="Ticker Speed"
 >
    <NumberFormat DecimalDigits='0' />
    <EnabledStyle HorizontalAlign='Right'  />
</telerik:RadNumericTextBox>

When I was using version 2011.2.712.40, it displayed correctly.

I have upgraded to version 2012.1.215.40, and now the text box is much wider, and overlapping its label. (See the two attachments for the correct and incorrect display).


The generated HTML for the correct display:

<div id="ctl00_Main__playerLocalSettingsControl__tbTickerSpeed_wrapper" class="RadInput RadInput_Default" style="width: 125px; display: inline-block; ">
            <table cellpadding="0" cellspacing="0" class="riTable" style="border-width:0;border-collapse:collapse;width:100%;">
                <tbody><tr>
                    <td><label class="riLabel" for="ctl00_Main__playerLocalSettingsControl__tbTickerSpeed_text" id="ctl00_Main__playerLocalSettingsControl__tbTickerSpeed_Label">Ticker Speed</label></td><td class="riCell" style="width:100%;white-space:normal;"><input type="text" id="ctl00_Main__playerLocalSettingsControl__tbTickerSpeed_text" name="ctl00_Main__playerLocalSettingsControl__tbTickerSpeed_text" class="riTextBox riEnabled" style="width: 100%; text-align: right; " maxlength="524288"><input style="visibility:hidden;float:right;margin:-18px 0 0 -1px;width:1px;height:1px;overflow:hidden;border:0;padding:0;" id="ctl00_Main__playerLocalSettingsControl__tbTickerSpeed" class="rdfd_" value="" type="text" title=""><input style="visibility:hidden;float:right;margin:-18px 0 0 -1px;width:1px;height:1px;overflow:hidden;border:0;padding:0;" id="ctl00_Main__playerLocalSettingsControl__tbTickerSpeed_Value" class="rdfd_" name="ctl00$Main$_playerLocalSettingsControl$_tbTickerSpeed" value="" type="text" title=""></td><td class="riSpin"><a class="riUp" href="javascript:void(0)" id="ctl00_Main__playerLocalSettingsControl__tbTickerSpeed_SpinUpButton"><span>Spin Up</span></a><a class="riDown" href="javascript:void(0)" id="ctl00_Main__playerLocalSettingsControl__tbTickerSpeed_SpinDownButton"><span>Spin Down</span></a></td>
                </tr>
            </tbody></table><input id="ctl00_Main__playerLocalSettingsControl__tbTickerSpeed_ClientState" name="ctl00_Main__playerLocalSettingsControl__tbTickerSpeed_ClientState" type="hidden" autocomplete="off">
        </div>


And the HTML for the incorrect display:

<span id="ctl00_Main__playerLocalSettingsControl__tbTickerSpeed_wrapper" class="riSingle  riContSpinButtons RadInput RadInput_Windows7" style="width:160px;">
    <label class="riLabel" for="ctl00_Main__playerLocalSettingsControl__tbTickerSpeed" id="ctl00_Main__playerLocalSettingsControl__tbTickerSpeed_Label" style="width:64px;">Ticker Speed
    </label>
    <span class="riContentWrapper" style="width:96px;">
        <span class="riDisplay" id="ctl00_Main__playerLocalSettingsControl__tbTickerSpeed_display" style="color: rgb(0, 0, 0); display: inline; font-family: 'segoe ui', arial, sans-serif; font-size: 12px; line-height: normal; text-align: right; padding-left: 5px; padding-right: 5px; border-left-width: 1px; border-right-width: 20px; ">
            10
        </span>
    <input id="ctl00_Main__playerLocalSettingsControl__tbTickerSpeed" name="ctl00$Main$_playerLocalSettingsControl$_tbTickerSpeed" type="text" class="riTextBox riEnabled" style="text-align: right; color: transparent; "><a class="riUp" href="javascript:void(0)" id="ctl00_Main__playerLocalSettingsControl__tbTickerSpeed_SpinUpButton"><span>Spin Up</span></a><a class="riDown" href="javascript:void(0)" id="ctl00_Main__playerLocalSettingsControl__tbTickerSpeed_SpinDownButton"><span>Spin Down</span></a></span>
    <input id="ctl00_Main__playerLocalSettingsControl__tbTickerSpeed_ClientState" name="ctl00_Main__playerLocalSettingsControl__tbTickerSpeed_ClientState" type="hidden" autocomplete="off" value="{"enabled":true,"emptyMessage":"","minValue":-70368744177664,"maxValue":70368744177664}">
</span>


What do I need to do to get this to display as it was before (ie as it displays in "tickerspeed_correct.png")?
Megan
Top achievements
Rank 1
 answered on 15 Apr 2013
15 answers
1.2K+ views

Hi,

is there known problem of radbutton not showing image until hover is off with IE9?

I have RadButton in one page where is also RadEditor:

<telerik:RadButton ID="ibtnSave" runat="server" CausesValidation="false" Width="43px" Height="43px" Text="<%$ Resources:ibtnSave %>" UseSubmitBehavior="false">

<Image ImageUrl="images/save.gif" EnableImageButton="true" />

</telerik:RadButton>

When I go to the page the button is there but the image is not showing. When you go over the button with mouse and go off then image turns visible.

Matt
Top achievements
Rank 1
 answered on 15 Apr 2013
2 answers
58 views

Only the 1st page has any rows, so what am I missing?  Here's the code:

<telerik:RadGrid ID="RadGridHistPats" runat="server" AutoGenerateColumns="False"
Skin="Outlook" AllowPaging="true" PageSize="10">
<MasterTableView >
<Columns>
<telerik:GridBoundColumn DataField="PatientID"
HeaderText="PatientID" UniqueName="PatientID">
</telerik:GridBoundColumn>
</Columns>
</MasterTableView>
</telerik:RadGrid>

protected void Page_Load(object sender, EventArgs e)
{
    if (!IsPostBack)
    {
        DataTable dt = new DataTable();
        dt.Columns.Add("PatientID");
        for (int iCount = 0; iCount < 200; iCount++)
        {
            DataRow dr = dt.NewRow();
            dr["PatientID"] = iCount.ToString();
            dt.Rows.Add(dr);
        }
        RadGridHistPats.DataSource = dt;
        RadGridHistPats.DataBind();
    }
}


Scott
Top achievements
Rank 1
 answered on 15 Apr 2013
2 answers
131 views
I am using a RadTabScript in a .NET master page.  I have javascript functions defined that help track whether any changes have been made on pages inheriting the master page.  (i.e. a version of the "is dirty" algorithm)  It works save for 1 aspect; when I click on another child tab (when a tab has children), there is no change to that child tab.  The child tab's header is select, but I'm still looking at the original child tab.

Not all tabs have child tabs so whatever I come up with has to detect dynamically whether there are child tabs and which child tab has been clicked on.

Here is the javascript I have so far.  In the code-behind of each page, I've created the appropriate "onclick"/"onchange" Attribute calling the appropriate function.  I've noted where I'm uncertain what to do with copious question marks.  I've tried using get_selectedTab() on the resulting get_tabs list.  I've tried get_tab on that list trying to use selectedIndex on the sub tab list and the tab from get_tab.  Something always errs out.

<script language="javascript" type="text/javascript">
    var isTabClicked = "false";

    function OnClientTabSelecting(sender, args) {
        if (isTabClicked == "false") {
            //cancel the action
            args.set_cancel(true);

            //get the tab which is clicked
            var tab = args.get_tab();
            var sub_tabs = tab.get_tabs();
            if (sub_tabs != null) {
                //                ????????
                }
            }

            //check to see if a change has been logged
            var sChangedHF = document.getElementById('<%=ChangedHiddenField.ClientID%>');
            if (sChangedHF.value == "True") {
                if (confirm('You have unsaved changes on this page.  Continue without saving?')) {
                    isTabClicked = "true";
                    tab.click();
                }
            }
            else {
                isTabClicked = "true";
                tab.click();
            }
        }
    }
    function OnClientTabSelected() {
        //reset the isTabClicked variable
        isTabClicked = "false";
    }
    function confirmChange() {
        var sChangedHF = document.getElementById('<%=ChangedHiddenField.ClientID%>');
        sChangedHF.value = "True";
    }
    function resetChange() {
        var sChangedHF = document.getElementById('<%=ChangedHiddenField.ClientID%>');
        sChangedHF.value = "False";
    }
</script>

Here is the XML that references it.  (Obviously it has been scrubbed ... and by hand so please forgive any possible syntax errors.)

    <asp:HiddenField ID="ChangedHiddenField" runat="server" Value="False" />
confirmIgnoreChange();' EnableViewState="true" CausesValidation="false" runat="server">--%>
    <TRad:RadTabStrip id="CaseTabStrip" ClickSelectedTab="true" Skin="Sitefinity" OnClientTabSelecting="OnClientTabSelecting" OnClientTabSelected="OnClientTabSelected" EnableViewState="true" CausesValidation="false" runat="server">
        <Tabs>
            <TRad:RadTab Text="No Child 1" NavigateUrl="~/NoChild1.aspx" runat="server"></TRad:RadTab>
            <TRad:RadTab Text="Children 1" runat="server">
                <Tabs>
                    <TRad:RadTab Text="Child 1.1" NavigateUrl="~/Child1_1.aspx" runat="server"></TRad:RadTab>
                    <TRad:RadTab Text="Child 1.2" NavigateUrl="~/Child1_2.aspx" runat="server"></TRad:RadTab>
                    <TRad:RadTab Text="Child 1.3" NavigateUrl="~/Child1_3.aspx" runat="server"></TRad:RadTab>
                    <TRad:RadTab Text="Child 1.4" NavigateUrl="~/Child1_4.aspx" runat="server"></TRad:RadTab>
                    <TRad:RadTab Text="Child 1.5" NavigateUrl="~/Child1_5.aspx" runat="server"></TRad:RadTab>
                    <TRad:RadTab Text="Child 1.6" NavigateUrl="~/Child1_6.aspx" runat="server"></TRad:RadTab>
                </Tabs>
            </TRad:RadTab>
            <TRad:RadTab Text="Children 2" runat="server">
                <Tabs>
                    <TRad:RadTab Text="Child 2.1" NavigateUrl="~/Child2_1.aspx" runat="server"></TRad:RadTab>
                    <TRad:RadTab Text="Child 2.2" NavigateUrl="~/Child2_2.aspx" runat="server"></TRad:RadTab>
                </Tabs>
            </TRad:RadTab>
            <TRad:RadTab Text="No Child 2" NavigateUrl="~/NoChild2.aspx" runat="server"></TRad:RadTab>
            <TRad:RadTab Text="Children 3" runat="server">
                <Tabs>
                    <TRad:RadTab Text="Child 3.1" NavigateUrl="~/Child3_1.aspx" runat="server"></TRad:RadTab>
                    <TRad:RadTab Text="Child 3.2" NavigateUrl="~/Child3_2.aspx" runat="server"></TRad:RadTab>
                </Tabs>
            </TRad:RadTab>
            <TRad:RadTab Text="No Child 3" NavigateUrl="~/NoChild3.aspx" runat="server"></TRad:RadTab>
        </Tabs>
    </TRad:RadTabStrip>

If you need any more information to help me with this please do not hesitate to ask.  It is a high priority for me but I can move onto something else for now.

Thanks.
Nencho
Telerik team
 answered on 15 Apr 2013
1 answer
85 views
Here the online solutions depending drop down not vice versa. I have there drop down , data populate using wcf service. Please consider my scenario 
Step 1 : i am requesting first drop downs  values ( OnClientItemsRequesting="OnClientItemsRequesting" ) i am getting 500 records.
    function OnClientItemsRequesting(sender, e) {
        var context = e.get_context();
        context["UpdateKeys"] = UpdateKeys();// thjis function give 3 dropdown selected value
    }

Step 2: I am requesting second drop downs values now i am getting 400 records ( these 400 records are depending values on first drop down )
Step 3: I am requesting third drop downs values now i am getting 300 records ( these 400 records are depending values on first & second drop downs )
Step 4: Now i am again requesting First drop down values . This time i need to get only 50(which are depending on 2&3 drop downs). i am update getting 50 records when i am start type on drop down text box.
                            But i need to update when i open drop down. Here have client event OnClientDropDownOpening or OnClientDropDownOpened. But this event doesn't have e.get_context(); and all auto wcf calling like OnClientItemsRequesting event.
<telerik:RadComboBox runat="server" ID="dropdown1" CloseDropDownOnBlur="true" EnableAjaxSkinRendering="true"
        EnableTextSelection="true" ShowWhileLoading="true" EnableLoadOnDemand="true"
       OnClientItemsRequesting="OnClientItemsRequesting"
        ShowMoreResultsBox="true" MinFilterLength="3" EnableVirtualScrolling="true" EmptyMessage="Type refresh values..."
        Width="380" Height="250">
        <WebServiceSettings Path="/Services/service.svc" Method="FillFristDrop" />
    </telerik:RadComboBox>
     <telerik:RadComboBox runat="server" ID="dropdown2" CloseDropDownOnBlur="true" EnableAjaxSkinRendering="true"
        EnableTextSelection="true" ShowWhileLoading="true" EnableLoadOnDemand="true"
       OnClientItemsRequesting="OnClientItemsRequesting"
        ShowMoreResultsBox="true" MinFilterLength="3" EnableVirtualScrolling="true" EmptyMessage="Type refresh values..."
        Width="380" Height="250">
        <WebServiceSettings Path="/Services/service.svc" Method="FillSecondDrop" />
    </telerik:RadComboBox>
     <telerik:RadComboBox runat="server" ID="dropdown3" CloseDropDownOnBlur="true" EnableAjaxSkinRendering="true"
        EnableTextSelection="true" ShowWhileLoading="true" EnableLoadOnDemand="true"
       OnClientItemsRequesting="OnClientItemsRequesting"
        ShowMoreResultsBox="true" MinFilterLength="3" EnableVirtualScrolling="true" EmptyMessage="Type refresh values..."
        Width="380" Height="250">
        <WebServiceSettings Path="/Services/service.svc" Method="FillThirdDrop" />
    </telerik:RadComboBox>
  
  
<script language="javascript" type="text/javascript">
    function OnClientItemsRequesting(sender, e) {
        var context = e.get_context();
        context["UpdateKeys"] = UpdateKeys();
    }
    function UpdateKeys() {
       return values // return remaing 2 dropdown selected value
    }
</script>
Hristo Valyavicharski
Telerik team
 answered on 15 Apr 2013
1 answer
125 views
Hy, i have:
Page.aspx--> UC_.ascx --> UC_TelerikEditor.ascx
UC_Editor.ascx:
<asp:MultiView ID="MLVeditor" runat="server" ActiveViewIndex="0">
    <asp:View ID="VIWnone" runat="server">
     
    </asp:View>
    <asp:View ID="VIWtextareaEditor" runat="server">
        <CTRL:TextareaEditor id="CTRLtextarea" runat="server"></CTRL:TextareaEditor>
    </asp:View>
    <asp:View ID="VIWliteEditor" runat="server">
        <CTRL:LiteEditor id="CTRLliteEditor" runat="server"></CTRL:LiteEditor>
    </asp:View>
    <asp:View ID="VIWtelerikEditor" runat="server">
        <CTRL:TelerikEditor id="CTRLtelerikEditor" runat="server"></CTRL:TelerikEditor>
    </asp:View>
</asp:MultiView>

UC_TelerikEditor.ascx:
<telerik:radeditor ID="RDEtelerik" runat="server" Visible="true" Width="800px" Height="200px">
 
</telerik:radeditor>

And result is:
<div id="ctl00_CPHservice_CTRLeditorQ_CTRLtelerikEditor_RDEtelerik" style="height:200px;width:800px;">
	<!-- 2013.1.403.35 -->
</div>

UC_Editor display specific view for desired editor... if i wrote:

<asp:MultiView ID="MLVeditor" runat="server" ActiveViewIndex="0">
    <asp:View ID="VIWnone" runat="server">
     
    </asp:View>
    <asp:View ID="VIWtextareaEditor" runat="server">
        <CTRL:TextareaEditor id="CTRLtextarea" runat="server"></CTRL:TextareaEditor>
    </asp:View>
    <asp:View ID="VIWliteEditor" runat="server">
        <CTRL:LiteEditor id="CTRLliteEditor" runat="server"></CTRL:LiteEditor>
    </asp:View>
    <asp:View ID="VIWtinyEditor" runat="server">
         <CTRL:TinyEditor id="CTRLtinyEditor" runat="server"></CTRL:TinyEditor>
    </asp:View>
    <asp:View ID="VIWtelerikEditor" runat="server">
            <telerik:radeditor ID="Radeditor1" runat="server" Visible="true" Width="800px" Height="450">
    </telerik:radeditor>
    </asp:View>
</asp:MultiView>

i can see editor render... any idea ??
Rumen
Telerik team
 answered on 15 Apr 2013
1 answer
52 views
Very disappointed to see the Simple Skin being retired.  We need more basic, "non busy" skins.  The newer skins (like Glow and Silk) have their place but the sizing throws off most designs not built around them.  The simple skin provided a clean, basic option that fits in most designs (even more than the Default skin) and w/o it I fear for an increased need for custom skins (which are complicated by my need to use CDNs for all style sheets.)

I was hoping for more options around simple skins - not the loss of the only one out there.  I realize its likely too late to save "Simple" - but please consider the need for "business-like" skins in the future.
(Metro is close - but is tied to a specific color scheme - and lacks in contrast in some important areas - like Grid header items.)

Thanks,
Bill
Ivan Zhekov
Telerik team
 answered on 15 Apr 2013
12 answers
769 views
Hi ,

 I have a telerikgrid inside that i have a
  <telerik:GridDropDownColumn  DropDownControlType="RadComboBox" HeaderText="Expiration Units" DataField="qual_req_units"
                                SortExpression="qual_req_units" />

OnItemDataBound and when it is in the edit mode i bind the combobox with the values.

OnItemCreated i tried to display the value from that is stored in the db. 
 GridDataItem item = (GridDataItem)e.Item;
 DataRowView drv = (DataRowView)e.Item.DataItem;
 item["qual_req_units"].Text = drv.Row["qual_req_units"].ToString();

Still it doesn't show any value in the view mode. In edit mode it shows the radcombo box's correctly. But even when select and update it doesn't show any value.

Please let me know what i need to do to display the value in the view mode.


Thanks,
Nirmala Kalakonda
Kenneth
Top achievements
Rank 1
 answered on 15 Apr 2013
Narrow your results
Selected tags
Tags
+? more
Top users last month
Miljana
Top achievements
Rank 2
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Bronze
Cynthia
Top achievements
Rank 1
John
Top achievements
Rank 1
Iron
Mozart
Top achievements
Rank 1
Iron
Veteran
Want to show your ninja superpower to fellow developers?
Top users last month
Miljana
Top achievements
Rank 2
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Bronze
Cynthia
Top achievements
Rank 1
John
Top achievements
Rank 1
Iron
Mozart
Top achievements
Rank 1
Iron
Veteran
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?