Telerik Forums
UI for ASP.NET AJAX Forum
3 answers
100 views
Hi Telerik Team,
 
I am using Radmenu to display the menu items on the application using following code:
The color higlighted is yellow for the selected Menu item.

Problem Description: When I open one more window from my application (this is one of the menu item to open new window), the selected Menu item is highlighted and happens only in New Window but the old window never highlights again with yellow color and remains white color as usual for all menus.

Please help me on the below problem. I pasted the code what i am using.

<style type="text/css">
        .RadMenu_MenuDefault a.rmSelected
        {
            color: Yellow;
        }
        .clickedP
        {
            color: Yellow;
        }
    </style>
  
  
<telerik:RadMenu ID="rmstabmenu" runat="server" Skin="Black" width: 100%; position: absolute;" 
OnClientItemClicking="OnClientItemClicking" CssClass="RadMenu_MenuDefault"  >
      <Items>
<telerik:RadMenuItem Text="Home"></telerik:RadMenuItem>
      </Items>
</telerik:RadMenu>
  
 function OnClientItemClicking(sender, args)
{
     var item = args.get_item();
     var itemtext = item.get_text();
     getText(itemtext)    ///This picks path for diff menu items
      return;
}
 
sudhakar
Top achievements
Rank 1
 answered on 03 Jun 2011
2 answers
121 views
I have successfully created a grid in asp.net with a nested view.  Since I am new to radgrid I am wondering what is the best way to cause a currently displayed nested view to close before a new one is opened when the user clicks on a different parent row drop down button?  I only want one nested view to be open at the time.

Thanks ed.
Nishanth
Top achievements
Rank 1
 answered on 02 Jun 2011
2 answers
131 views
Hi there,

We have a RadRotator working/loading via a webservice (using the webservicesettings functionality) and all is working well ....except for the following exception that is thrown when a user clicks off the page with the rotator loading too quickly (as a javascript alert dialog):

RadRotator items request failed :
Exception = The server method 'GetRotatorData' failed.


Occurs in FF, IE, Chrome, and occurs regardless of the debug mode setting in web.config

Is it possible to supress/hide, or better, handle this so that the javascript alert is not thrown up to the user?

(Version is that supplied with Sitefinity 4.1 SP1)

Thanks
Matthew Tamm
Top achievements
Rank 2
 answered on 02 Jun 2011
1 answer
108 views
Dear telerik,

I've a Calendar list in sharepoint 2010.Now as i didn't want to use in-built sharepoint calendar control, i decided to go for silverlight RadScheduler control.
Now I've integrated silverlight Radscheduler as custom webpart into sharepoint 2010 successfully. Also I am able to do all CRUD operations with Scheduler and sharepoint 2010 calendar list vice versa. i've used silverlight Client Object model of sharepoint 2010.

Now i want to extend my scheduler's functionality by providing purely Dynamic Edit Appointment Dialog window exactly looks like sharepoint 2010 calendar list NewForm/edit form/display form webparts. I mean, when any column/field removes/adds into sharepoint 2010, it automotically reflect into sharepoint 2010 calendar newform/edit form/display form webparts ,but my scheduler is not able to do that. So i decided to build one dynamic edit appointment dialog window which will get all latest list of fields/columns and generate it's related controls and displays into Edit appointment dialog window.

how will i achieve this ? kindly provide source code or anything, i am stuck with this.

regards
George
Telerik team
 answered on 02 Jun 2011
3 answers
98 views
I want to update a field in my grid/database to indicate that a record or records have been exported. I am using a custom button to handle the export event rather than the button built into the grid. Is there any way to logically pass on information as to which records have been exported?
Jayesh Goyani
Top achievements
Rank 2
 answered on 02 Jun 2011
1 answer
92 views
Hi all

how can I change the text box that appears when I try to add or edit an item in my rad grid ?

I want to add an item with some styles, but text box never allow me to do that

can you help me ?



thank you all :)
Jayesh Goyani
Top achievements
Rank 2
 answered on 02 Jun 2011
1 answer
137 views
Hi,

I am using telerik Nested Grid which consists of Two Detail Tables One is for groups and the other is for items. I have placed my lblTotalCost in a footertemplate of group and I want to calculate the total cost programatically but this works fine when the grid loads but when I update and insert and item in a grid a problem occurs. I am calculating total cost Using my CalculateTotalCost Method.

Any help would be greatly appreciated.


<telerik:RadGrid ID="rgQuotation" runat="server" Width="95%" ShowStatusBar="true" Skin="Vista" Font-Names="Verdana"
          AutoGenerateHierarchy="true" HierarchyLoadMode="ServerBind" AutoGenerateColumns="False"
          PageSize="20" AllowSorting="True" AllowMultiRowSelection="False" AllowPaging="True"
           ShowFooter="True">
          <PagerStyle Mode="NumericPages"></PagerStyle>
          <MasterTableView Width="100%" DataKeyNames="ID" AllowMultiColumnSorting="True" CommandItemDisplay="Top" HierarchyDefaultExpanded="true" HierarchyLoadMode="ServerOnDemand"
              Name="Quotation" CssClass="DetailTable_Default" >
              <Columns>
                  <telerik:GridEditCommandColumn ButtonType="ImageButton" UniqueName="EditCommandColumn"
                      ItemStyle-Width="30px" EditImageUrl="~/Portals/0/Images/Edit.gif">
                  </telerik:GridEditCommandColumn>
                  <telerik:GridBoundColumn SortExpression="ID" HeaderText="ID" HeaderButtonType="TextButton"
                      DataField="ID" UniqueName="ID" ReadOnly="true" Visible="false">
                  </telerik:GridBoundColumn>
                  <telerik:GridBoundColumn SortExpression="TariffName" HeaderText="Quotation Name"
                      HeaderButtonType="TextButton" DataField="TariffName" UniqueName="TariffName"
                      ReadOnly="true">
                  </telerik:GridBoundColumn>
                  <telerik:GridBoundColumn SortExpression="RecordType" HeaderText="Rec Type" HeaderButtonType="TextButton"
                      DataField="RecordType" UniqueName="RecordType" ReadOnly="true" Visible="false">
                  </telerik:GridBoundColumn>
                  <telerik:GridBoundColumn SortExpression="JobID" HeaderText="Job No" HeaderButtonType="TextButton"
                      DataField="JobID" UniqueName="JobID" ReadOnly="true" Visible="false">
                  </telerik:GridBoundColumn>
              </Columns>
              <EditFormSettings EditFormType="Template" InsertCaption="New Quotation">
                  <FormTemplate>
                      <div>
                          <asp:Label ID="lblTariffName" runat="server" Text="Quotation Name" CssClass="fieldsetControlStyle"></asp:Label>
                             
                          <asp:TextBox ID="txtTariffName" runat="server" Text='<%# Eval("TariffName") %>'></asp:TextBox>
                          <asp:LinkButton ID="lnkbtnUpdate" runat="server" CausesValidation="True" CommandName='<%# IIf( DataBinder.Eval(Container, "OwnerTableView.IsItemInserted"), "PerformInsert", "Update") %>'
                              CssClass="lnkButton" ToolTip="Update">
                              <asp:Image ID="imgUpdate" runat="server" ImageUrl="~/Portals/0/Images/Update.gif" /></asp:LinkButton>
                           <asp:LinkButton ID="lnkbtnCancel" runat="server" CausesValidation="False" CommandName="Cancel"
                              CssClass="lnkButton" ToolTip="Cancel">
                              <asp:Image ID="imgCancel" runat="server" ImageUrl="~/Portals/0/Images/Cancel.gif" /></asp:LinkButton>
                      </div>
                  </FormTemplate>
              </EditFormSettings>
              <DetailTables>
                  <telerik:GridTableView DataKeyNames="GroupID" HierarchyLoadMode="ServerBind" Width="100%" HierarchyDefaultExpanded="true"
                      CommandItemDisplay="Top" runat="server" Name="Groups" CssClass="DetailTable_Default" >
                      <Columns>
                          <telerik:GridEditCommandColumn ButtonType="ImageButton" UniqueName="EditCommandColumn"
                              ItemStyle-Width="30px" EditImageUrl="~/Portals/0/Images/Edit.gif">
                          </telerik:GridEditCommandColumn>
                          <telerik:GridBoundColumn SortExpression="GroupID" HeaderText="GroupID" HeaderButtonType="TextButton"
                              DataField="GroupID" UniqueName="GroupID" ReadOnly="true" Visible="false">
                          </telerik:GridBoundColumn>
                          <telerik:GridBoundColumn SortExpression="GroupName" HeaderText="Group Name" HeaderButtonType="TextButton"
                              DataField="GroupName" UniqueName="GroupName">
                              <ItemStyle Font-Bold="true" />
                          </telerik:GridBoundColumn>
                          <telerik:GridBoundColumn SortExpression="TariffID" HeaderText="TariffID" HeaderButtonType="TextButton"
                              DataField="TariffID" UniqueName="TariffID" ReadOnly="true" Visible="false">
                          </telerik:GridBoundColumn>
                          <telerik:GridTemplateColumn>
                              <FooterTemplate>
                                                       
                                  <asp:Label ID="lblTotalCost" runat="server" Text="Total Cost" Font-Bold="true" CssClass="lblTotalCost"></asp:Label>
                              </FooterTemplate>
                          </telerik:GridTemplateColumn>
                      </Columns>
                      <EditFormSettings EditFormType="Template" InsertCaption="New Group">
                          <FormTemplate>
                              <div>
                                  <asp:Label ID="lblGroupName" runat="server" Text="Group Name" CssClass="fieldsetControlStyle"></asp:Label>
                                     
                                  <asp:TextBox ID="txtGroupName" runat="server" Text='<%# Eval("groupname") %>'></asp:TextBox>
                                  <br />
                                  <asp:LinkButton ID="lnkbtnUpdate" runat="server" CausesValidation="True" CommandName='<%# IIf( DataBinder.Eval(Container, "OwnerTableView.IsItemInserted"), "PerformInsert", "Update") %>'
                                      CssClass="lnkButton">
                                      <asp:Image ID="imgUpdate" runat="server" ImageUrl="~/Portals/0/Images/Update.gif" /></asp:LinkButton>
                                   <asp:LinkButton ID="lnkbtnCancel" runat="server" CausesValidation="False" CommandName="Cancel"
                                      CssClass="lnkButton" ToolTip="Cancel">
                                      <asp:Image ID="imgCancel" runat="server" ImageUrl="~/Portals/0/Images/Cancel.gif" /></asp:LinkButton>
                              </div>
                          </FormTemplate>
                      </EditFormSettings>
                      <CommandItemSettings AddNewRecordText="Add New Group" AddNewRecordImageUrl="~/Portals/0/Images/AddRecord.gif"
                          ShowRefreshButton="false" />
                      <DetailTables>
                          <telerik:GridTableView DataKeyNames="ID" Width="100%" Name="Items" CommandItemDisplay="Top" CssClass="DetailTable_Default!" 
                              EditMode="InPlace" runat="server" HierarchyLoadMode="Client">
                              <Columns>
                                  <telerik:GridEditCommandColumn ButtonType="ImageButton" UniqueName="EditCommandColumn"
                                      UpdateImageUrl="~/Portals/0/Images/Update.gif" ItemStyle-Width="40px" EditImageUrl="~/Portals/0/Images/Edit.gif"
                                      CancelImageUrl="~/Portals/0/Images/Cancel.gif">
                                  </telerik:GridEditCommandColumn>
                                  <telerik:GridBoundColumn SortExpression="ID" HeaderText="ID" HeaderButtonType="TextButton"
                                      DataField="ID" UniqueName="ID" ReadOnly="true" Visible="false">
                                  </telerik:GridBoundColumn>
                                  <telerik:GridBoundColumn SortExpression="ItemOrder" HeaderText="ItemOrder" HeaderButtonType="TextButton"
                                      DataField="ItemOrder" UniqueName="ItemOrder" ReadOnly="true" Visible="false">
                                  </telerik:GridBoundColumn>
                                  <%--                            <telerik:GridBoundColumn SortExpression="ItemName" HeaderText="Item Name" DataField="ItemName"
                              UniqueName="ItemName">
                              UniqueName="ItemName">
                          </telerik:GridBoundColumn>--%>
                                  <telerik:GridTemplateColumn HeaderText="Item Name">
                                      <ItemTemplate>
                                          <asp:Label ID="lblItemName" runat="server" Text='<%# Eval("ItemName") %>'></asp:Label>
                                      </ItemTemplate>
                                      <EditItemTemplate>
                                          <asp:TextBox ID="txtItemName" runat="server" Text='<%# Eval("ItemName") %>'></asp:TextBox>
                                          <asp:RequiredFieldValidator ID="rfvtxtItemName" runat="server" ErrorMessage="!" Display="Dynamic"
                                              ControlToValidate="txtItemName"></asp:RequiredFieldValidator>
                                      </EditItemTemplate>
                                      <ItemStyle Width="30%" />
                                  </telerik:GridTemplateColumn>
                                  <telerik:GridTemplateColumn HeaderText="Rate">
                                      <ItemTemplate>
                                          <asp:Label ID="lblUnits" runat="server" Text='<%# Eval("Units") %>'></asp:Label>
                                      </ItemTemplate>
                                      <EditItemTemplate>
                                          <telerik:RadNumericTextBox ID="rntbRate" ShowSpinButtons="true" IncrementSettings-InterceptArrowKeys="true"
                                              IncrementSettings-InterceptMouseWheel="true" runat="server" Type="Number" Width="80px"
                                              DbValue='<%# Eval("Units") %>' NumberFormat-DecimalDigits="2" MinValue="1" IncrementSettings-Step="1"
                                              CssClass="fieldsetControlWidth fieldsetLine" />
                                      </EditItemTemplate>
                                  </telerik:GridTemplateColumn>
                                  <telerik:GridTemplateColumn HeaderText="Quantity">
                                      <ItemTemplate>
                                          <asp:Label ID="lblQuantity" runat="server" Text='<%# Eval("Quantity") %>'></asp:Label>
                                      </ItemTemplate>
                                      <EditItemTemplate>
                                          <telerik:RadNumericTextBox ID="rntbQuantity" ShowSpinButtons="true" IncrementSettings-InterceptArrowKeys="true"
                                              IncrementSettings-InterceptMouseWheel="true" runat="server" Type="Number" Width="80px"
                                              DbValue='<%# Eval("Quantity") %>' NumberFormat-DecimalDigits="0" MinValue="0"
                                              IncrementSettings-Step="1" CssClass="fieldsetControlWidth fieldsetLine">
                                              <ClientEvents OnBlur="Blur" OnFocus="Focus" />
                                          </telerik:RadNumericTextBox>
                                      </EditItemTemplate>
                                  </telerik:GridTemplateColumn>
                                  <telerik:GridTemplateColumn HeaderText="C.P">
                                      <ItemTemplate>
                                          <asp:Label ID="lblCostPrice" runat="server" Text='<%# Format(DataBinder.Eval(Container.DataItem,"CostPrice"),"###,##0.00") %>'></asp:Label>
                                      </ItemTemplate>
                                      <EditItemTemplate>
                                          <telerik:RadNumericTextBox ID="rntbCostPrice" ShowSpinButtons="true" IncrementSettings-InterceptArrowKeys="true"
                                              IncrementSettings-InterceptMouseWheel="true" runat="server" Type="Number" Width="80px"
                                              DbValue='<%# Eval("CostPrice") %>' NumberFormat-DecimalDigits="2" MinValue="0"
                                              IncrementSettings-Step="1" CssClass="fieldsetControlWidth fieldsetLine" />
                                      </EditItemTemplate>
                                  </telerik:GridTemplateColumn>
                                  <telerik:GridTemplateColumn HeaderText="S.P">
                                      <ItemTemplate>
                                          <asp:Label ID="lblSellingPrice" runat="server" Text='<%# Format(DataBinder.Eval(Container.DataItem,"SellingPrice"),"###,##0.00") %>'></asp:Label>
                                      </ItemTemplate>
                                      <EditItemTemplate>
                                          <telerik:RadNumericTextBox ID="rntbSellingPrice" ShowSpinButtons="true" IncrementSettings-InterceptArrowKeys="true"
                                              IncrementSettings-InterceptMouseWheel="true" runat="server" Type="Number" Width="80px"
                                              DbValue='<%# Eval("SellingPrice") %>' NumberFormat-DecimalDigits="2" MinValue="0"
                                              IncrementSettings-Step="1" CssClass="fieldsetControlWidth fieldsetLine" />
                                      </EditItemTemplate>
                                  </telerik:GridTemplateColumn>
                                  <telerik:GridCalculatedColumn HeaderText="C.P Total" DataType="System.Double" FooterText="C.P Total : "
                                      UniqueName="TotalCostPrice" DataFields="CostPrice,Units,Quantity" Expression="{0}/{1}*{2}"
                                      Aggregate="Sum" DataFormatString="{0:###,##0.00}" FooterAggregateFormatString="{0:£###,##0.00}" />
                                  <telerik:GridCalculatedColumn HeaderText="S.P Total " UniqueName="TotalSellingPrice"
                                      DataFields="SellingPrice,Units,Quantity" Expression="{0}/{1}*{2}" DataType="System.Double"
                                      FooterAggregateFormatString="{0:£###,##0.00}" FooterText="S.P Total : " Aggregate="Sum"
                                      DataFormatString="{0:###,##0.00}" />
                              </Columns>
                              <CommandItemSettings AddNewRecordText="Add New Item" AddNewRecordImageUrl="~/Portals/0/Images/AddRecord.gif"
                                  ShowRefreshButton="false" />
                              <%--<EditFormSettings EditFormType="Template" InsertCaption="New Item">
                          <FormTemplate>
                              <div>
                                  <asp:Label ID="lblItemName" runat="server" Text="Item Name" CssClass="fieldsetControlStyle"></asp:Label>
                                     
                                  <asp:TextBox ID="txtItemName" runat="server" Text='<%# Eval("ItemName") %>'></asp:TextBox>
                                  <br />
                                  <asp:Label ID="lblRate" runat="server" Text="Rate" CssClass="fieldsetControlStyle"></asp:Label>
                                               
                                  <asp:TextBox ID="txtRate" runat="server" Text='<%# Eval("Units") %>'></asp:TextBox>
                                  <br />
                                  <asp:Label ID="lblQuantity" runat="server" Text="Quantity"></asp:Label>
                                  <telerik:RadNumericTextBox ID="rntbQuantity" ShowSpinButtons="true" IncrementSettings-InterceptArrowKeys="true"
                                      IncrementSettings-InterceptMouseWheel="true" runat="server" Type="Number" Width="80px"
                                      NumberFormat-DecimalDigits="0" MinValue="0" IncrementSettings-Step="1" CssClass="fieldsetControlWidth fieldsetLine" />
                                  <br />
                                  <asp:Label ID="lblCostPrice" runat="server" Text="Cost Price" CssClass="fieldsetControlStyle"></asp:Label>
                                      
                                  <telerik:RadNumericTextBox ID="rntbCostPrice" MinValue="0" runat="server" MaxLength="6"
                                      DbValue='<%# Bind("CostPrice") %>' Width="160px" Type="Currency" Culture="English (United Kingdom)">
                                  </telerik:RadNumericTextBox>
                                  <br />
                                  <asp:Label ID="lblSellingPrice" runat="server" Text="Selling Price" CssClass="fieldsetControlStyle"></asp:Label>
                                    
                                  <telerik:RadNumericTextBox ID="rntbSellingPrice" MinValue="0" runat="server" MaxLength="6"
                                      DbValue='<%# Bind("SellingPrice") %>' Width="160px" Type="Currency" Culture="English (United Kingdom)">
                                  </telerik:RadNumericTextBox>
                                  <br />
                                  <br />
                                  <asp:LinkButton ID="lnkbtnUpdate" runat="server" CausesValidation="True" CommandName='<%# IIf( DataBinder.Eval(Container, "OwnerTableView.IsItemInserted"), "PerformInsert", "Update") %>'
                                      CssClass="lnkButton" ToolTip="Update">
                                      <asp:Image ID="imgUpdate" runat="server" ImageUrl="~/Portals/0/Images/Update.gif" /></asp:LinkButton>
                                   <asp:LinkButton ID="lnkbtnCancel" runat="server" CausesValidation="False" CommandName="Cancel"
                                      CssClass="lnkButton" ToolTip="Cancel">
                                      <asp:Image ID="imgCancel" runat="server" ImageUrl="~/Portals/0/Images/Cancel.gif" /></asp:LinkButton>
                              </div>
                          </FormTemplate>
                          <%-- <EditColumn ButtonType="ImageButton" InsertText="Insert Item" UpdateText="Update Item"
                              UpdateImageUrl="~/Portals/0/Images/Update.gif" InsertImageUrl="~/Portals/0/Images/Update.gif"
                              UniqueName="EditCommandColumn1" CancelText="Cancel edit">
                          </EditColumn>
                      </EditFormSettings>--%>
                          </telerik:GridTableView>
                      </DetailTables>
                  </telerik:GridTableView>
              </DetailTables>
              <CommandItemSettings AddNewRecordText="Add new Quotation" AddNewRecordImageUrl="~/Portals/0/Images/AddRecord.gif"
                  ShowRefreshButton="false" ShowExportToPdfButton="true" />
          </MasterTableView>
          <ClientSettings AllowKeyboardNavigation="true" EnableRowHoverStyle="true">
              <ClientEvents OnRowContextMenu="RowContextMenu" OnRowDblClick="RowDblClick" />
              <Selecting AllowRowSelect="true" />
              <KeyboardNavigationSettings EnableKeyboardShortcuts="true" AllowSubmitOnEnter="true"
                  AllowActiveRowCycle="true" CollapseDetailTableKey="LeftArrow" ExpandDetailTableKey="RightArrow" />
          </ClientSettings>
      </telerik:RadGrid>

Protected Sub CalculateTotalCost(Optional ByVal e As Telerik.Web.UI.GridItemEventArgs = Nothing)

For Each gdiQuotation As GridDataItem In rgQuotation.MasterTableView.Items
 
           pdTotalCost = 0
 
           For Each gdiGroups As GridDataItem In gdiQuotation.ChildItem.NestedTableViews(0).Items
 
               For Each gdiItems In gdiGroups.ChildItem.NestedTableViews(0).Items
 
                   pdTotalCost = pdTotalCost + Convert.ToDecimal(gdiItems("TotalCostPrice").Text)
 
                   Dim nestedView As GridTableView = gdiQuotation.ChildItem.NestedTableViews(0)
 
                   For Each childfooter As GridFooterItem In nestedView.GetItems(GridItemType.Footer)
 
                       Dim lblTotalCost As Label = DirectCast(childfooter.FindControl("lblTotalCost"), Label)
 
                       lblTotalCost.Text = "Total C.P £" + pdTotalCost.ToString()
 
                   Next
 
               Next
 
           Next
 
       Next

End Sub

Protected Sub rgQuotation_ItemDataBound(ByVal source As Object, ByVal e As Telerik.Web.UI.GridItemEventArgs) Handles rgQuotation.ItemDataBound

        If TypeOf e.Item Is GridDataItem And e.Item.OwnerTableView.Name = "Items" Then          

            CalculateTotalCost()

        ElseIf TypeOf e.Item Is GridFooterItem And e.Item.OwnerTableView.Name = "Groups" Then

           CalculateTotalCost()

        End If


    End Sub
Marin
Telerik team
 answered on 02 Jun 2011
2 answers
94 views
I have a class derived from RadGrid, to which i would like to add a hidden input and possibly other controls.  I'd like to put those at the root level - adding them to the main div (so that these added controls would be siblings of the MasterTableView), but it doesn't seem possible.  I've tried overriding CreateChildControls, OnLoad, PreRender, and other functions, at which point i'd try to do a simple this.controls.add().  But the controls i add in this manner never get rendered out to the page - regardless of which function i'm in.

The only way i've been able to render those controls out is if i add them to a cell in the command item.  But that command row won't always be visible, so that doesn't seem like a very solid solution.

Any ideas?  What's the best way to add child controls to a RadGrid derived class?  Preferably without resorting to turning the whole thing into a composite control.

-RP
Justavian
Top achievements
Rank 1
 answered on 02 Jun 2011
5 answers
150 views
Hi,

I'm using a radgrid in edit mode which has a radcombo box and three textbox controls for each row. Can you point me in the right direction on how to preserve state when i need to do a postback?

Thansk,
Ron
Ron
Top achievements
Rank 1
 answered on 02 Jun 2011
2 answers
131 views
Hi,

I'm using a rad combo box within a rad grid and the first column of the grid is the rad combo box. Can you tell me if it's possible that on selected index changed if I can set the text property for a label or text box control outside of the grid? I'm not looking to set the text property for any controls within the grid but out side the grid. I've tried the following with no results. 
protected void RadComboBox1_OnSelectedIndexChanged(object sender, RadComboBoxSelectedIndexChangedEventArgs e)
   {
       lblSubtotal.Text = "Mytest";
   }

Thanks,
Ron.
Ron
Top achievements
Rank 1
 answered on 02 Jun 2011
Narrow your results
Selected tags
Tags
+? more
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?