Ticket T1284708
Visible to All Users

Aspx WebDashboard - access parameter value at client side

created 6 days ago

Hello,

I set the dashboard parameter value inside the "dxDBViewer_CustomParameters" event.

C#
protected void dxDBViewer_CustomParameters(object sender, DevExpress.DashboardWeb.CustomParametersWebEventArgs e) { try { var loginNameParameter = e.Parameters.FirstOrDefault(p => p.Name == "pCurrentLoginName"); if (loginNameParameter != null) { loginNameParameter.Value = currentUserLoginName; } } catch (Exception ex) { } }

I am trying to get the parameter value at the client side inside "onDashboardTitleToolbarUpdated" event.

JavaScript
function onDashboardTitleToolbarUpdated(s, e) { debugger; var caption = e.Options.contentItems.filter(function (item) { return item.name === 'dashboard-title' }); if (caption.length > 0) { var parameters = webViewer.GetParameters(); var parameter1 = parameters.GetParameterByName("pCurrentLoginName"); var parameter1Value = parameter1.GetValue(); caption[0].text = parameter1Value; } }

The parameter value is coming out empty. Please suggest a workaround.

Comments (1)
Yaroslav (DevExpress Support) 2 days ago

    Hi Kalai,

    The custom parameter values supplied via the CustomParameters event are used only for data selection. With this event, you can "silently" customize parameter values according to your requirements. This feature is not meant to be used on a client-server communication channel; it's a security measure meant for user-level data filtering.

    Please suggest a workaround.

    Before recommending any particular solution, could you please elaborate on the overall usage scenario? What does that pCurrentLoginName variable represent? Judging by the name, that would be the user's name from the Session object. In this case, I assume you could just insert it into the page during its initial rendering (e.g., as a hidden field). Do you see any issue with this alternative? Please let us know.

    Disclaimer: The information provided on DevExpress.com and affiliated web properties (including the DevExpress Support Center) is provided "as is" without warranty of any kind. Developer Express Inc disclaims all warranties, either express or implied, including the warranties of merchantability and fitness for a particular purpose. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.

    Confidential Information: Developer Express Inc does not wish to receive, will not act to procure, nor will it solicit, confidential or proprietary materials and information from you through the DevExpress Support Center or its web properties. Any and all materials or information divulged during chats, email communications, online discussions, Support Center tickets, or made available to Developer Express Inc in any manner will be deemed NOT to be confidential by Developer Express Inc. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.