All Apps and Add-ons

Why am I unable to select and edit elements in Sideview Utils using Chrome browser?

sbsbb
Builder

I've added some elements with sideview to my view, and now I'm unable to edit it through sideview anymore, its not possible to select elements for edit/delete

Correction : it works under Firefox, not Chrome 37.0.2062.124 m

<view isSticky="False" isVisible="true" onunloadCancelJobs="true" template="dashboard.html">
  <label>Durchlaufzeiten Datenabrufen</label>

  <module name="AccountBar" layoutPanel="appHeader" />

  <module name="AppBar" layoutPanel="appHeader" />

  <module name="SideviewUtils" layoutPanel="appHeader" />

  <module name="Message" layoutPanel="messaging">
    <param name="filter">*</param>
    <param name="maxSize">2</param>
    <param name="clearOnJobDispatch">False</param>
  </module>

  <module name="HTML" layoutPanel="viewHeader">
    <param name="html"><![CDATA[
        <h1>Durchlaufzeit zwischen DatenAbrufenAnfrage und DatenAbrufenAntwort</h1>

DatenAbrufenAntwort.WeitereDaten="true" werden ignoriert, da diese die gleiche LogID haben, deswegen kann man die Durchlaufzeit nicht pro Anfrage berechnen



]]></param>

    <module name="URLLoader" autoRun="True">
      <param name="keepURLUpdated">True</param>

      <module name="Pulldown">
        <param name="label">Plattform</param>
        <param name="float">left</param>
        <param name="staticOptions">
          <list>
            <param name="label">test</param>
            <param name="value">t_kihub</param>
          </list>
          <list>
            <param name="label">inte</param>
            <param name="value">i_kihub</param>
          </list>
          <list>
            <param name="selected">true</param>
            <param name="label">prod</param>
            <param name="value">p_kihub</param>
          </list>
        </param>
        <param name="name">plattform</param>

        <module name="Search">
          <param name="search"><![CDATA[
| dbquery p_cusmdm-cusmdm12
"SELECT distinct ps_senderkennung as partner
FROM PVService pv
JOIN CODEZENTRAL c ON c.CD_ID=PV.CD_KIHUBSYSTEM
WHERE lower(substr(C.CD_WERT,7,1)) || '_kihub'='$plattform$'
ORDER BY ps_senderkennung"






]]></param>

          <module name="Pulldown">
            <param name="valueField">PARTNER</param>
            <param name="float">left</param>
            <param name="name">partner</param>
            <param name="staticOptions">
              <list>
                <param name="value">*</param>
              </list>
            </param>

            <module name="Pulldown">
              <param name="label">Dienst</param>
              <param name="float">left</param>
              <param name="staticOptions">
                <list>
                  <param name="value">ans</param>
                </list>
                <list>
                  <param name="value">dfi</param>
                </list>
                <list>
                  <param name="value">aus</param>
                </list>
                <list>
                  <param name="selected">true</param>
                  <param name="value">*</param>
                </list>
              </param>
              <param name="name">dienst</param>

              <module name="TimeRangePicker">
                <param name="default">Last 60 minutes</param>

                <module name="Button">
                  <param name="allowAutoSubmit">False</param>

                  <module name="Search">
                    <param name="search"><![CDATA[
index=$plattform$
partner=$partner$
dienst=$dienst$
resource="datenabrufen.xml"
| fields - _raw
| fields logID,_time,partner,dienst,channel,messageType,DatenAbrufenAntwort.WeitereDaten
| rename DatenAbrufenAntwort.WeitereDaten as WeitereDaten
| eval Anfrage_time=case(messageType="DatenAbrufenAnfrage",_time)
| eval Antwort_time=case(messageType="DatenAbrufenAntwort",_time)
| stats min(Anfrage_time) as Anfrage_time, max(Antwort_time) as Antwort_time,c(eval(WeitereDaten="true")) as WeitereDaten by partner,dienst,channel,logID
| search WeitereDaten=*
| eval timeDiff=round(Antwort_time - Anfrage_time,0)
| eval _time=Anfrage_time
| convert ctime(Anfrage_time) as Anfrage, ctime(Antwort_time) as Antwort













]]></param>

                    <module name="JobProgressIndicator" layoutPanel="panel_row1_col1" />

                    <module name="Pulldown" layoutPanel="panel_row1_col1" group="Filter">
                      <param name="group">Filter</param>
                      <param name="label">Partner</param>
                      <param name="postProcess">$postProcess$ | dedup partner | sort partner</param>
                      <param name="valueField">partner</param>
                      <param name="float">left</param>
                      <param name="staticOptions">
                        <list>
                          <param name="selected">true</param>
                          <param name="value">*</param>
                        </list>
                      </param>
                      <param name="name">F_partner</param>

                      <module name="Pulldown">
                        <param name="labelField">dienst</param>
                        <param name="valueField">dienst</param>
                        <param name="postProcess">$postProcess$ | dedup dienst | sort dienst</param>
                        <param name="float">left</param>
                        <param name="staticOptions">
                          <list>
                            <param name="selected">true</param>
                            <param name="value">*</param>
                          </list>
                        </param>
                        <param name="label">Dienst</param>
                        <param name="name">F_dienst</param>

                        <module name="Pulldown">
                          <param name="label">Channel</param>
                          <param name="valueField">channel</param>
                          <param name="staticOptions">
                            <list>
                              <param name="selected">true</param>
                              <param name="value">*</param>
                            </list>
                          </param>
                          <param name="postProcess">$postProcess$ | dedup channel | sort channel</param>
                          <param name="name">F_channel</param>

                          <module name="PostProcess" layoutPanel="panel_row3_col1" group="Daten">
                            <param name="group">Daten</param>
                            <param name="search"><![CDATA[
search partner=$F_partner$ dienst=$F_dienst$ channel=$F_channel$
| sort - timeDiff
| eval actions=""
| eval endTime=Antwort_time + 100
| rename Anfrage_time as startTime
| table _time,partner,dienst,channel,Anfrage,Antwort,timeDiff,logID,actions,startTime,endTime












]]></param>

                            <module name="Pager">

                              <module name="Table">
                                <param name="hiddenFields">startTime,endTime,plattform</param>

                                <module name="Button" group="row.fields.actions">
                                  <param name="group">row.fields.actions</param>

                                  <module name="Redirector">
                                    <param name="popup">True</param>
                                    <param name="url">cus5_vdv_other-all_messages?plattform=$plattform$&amp;partner=$row.fields.partner$&amp;dienst=$row.fields.dienst$&amp;channel=$row.fields.channel$&amp;logID=$row.fields.logID$&amp;earliest=$row.fields.startTime$&amp;latest=$row.fields.endTime$&amp;autorun=True</param>
                                    <param name="windowFeatures">resizable=yes,status=yes,scrollbars=yes,toolbar=yes</param>
                                  </module>
                                </module>
                              </module>
                            </module>
                          </module>

                          <module name="PostProcess" layoutPanel="panel_row2_col1">
                            <param name="search"><![CDATA[
| search partner=$F_partner$ dienst=$F_dienst$ channel=$F_channel$ | timechart span=5m max(timeDiff) as max, min(timeDiff) as min, avg(timeDiff) as avg
| eval avg=round(avg,2)





]]></param>

                            <module name="HiddenChartFormatter">
                              <param name="chartTitle">Durchlaufzeit Statistik (5 Minuten)</param>
                              <param name="chart">line</param>

                              <module name="JSChart" />
                            </module>
                          </module>

                          <module name="PostProcess" layoutPanel="panel_row2_col2">
                            <param name="search"><![CDATA[

| search partner=$F_partner$ dienst=$F_dienst$ channel=$F_channel$ | timechart span=5m avg(timeDiff) as avg by partner | eval avg=round(avg,2)






]]></param>

                            <module name="HiddenChartFormatter">
                              <param name="chartTitle">Durchlaufzeit bei Partner</param>
                              <param name="chart">line</param>

                              <module name="JSChart" />
                            </module>
                          </module>

                          <module name="PostProcess" layoutPanel="panel_row2_col1">
                            <param name="search"><![CDATA[

| search partner=$F_partner$ dienst=$F_dienst$ channel=$F_channel$ | timechart span=5m max(timeDiff) as max by dienst | eval max=round(avg,2)



]]></param>

                            <module name="HiddenChartFormatter">
                              <param name="chart">line</param>
                              <param name="chartTitle">Max Durchlaufzeit bei Dienst</param>

                              <module name="JSChart" />
                            </module>
                          </module>

                          <module name="PostProcess" layoutPanel="panel_row2_col2">
                            <param name="search"><![CDATA[
| search partner=$F_partner$ dienst=$F_dienst$ channel=$F_channel$ | timechart span=5m max(timeDiff) as max by channel | eval max=round(avg,2)


]]></param>

                            <module name="HiddenChartFormatter">
                              <param name="chart">line</param>
                              <param name="chartTitle">Max Durchlaufzeit bei Channel</param>

                              <module name="JSChart" />
                            </module>
                          </module>
                        </module>
                      </module>
                    </module>

                    <module name="SearchControls">
                      <param name="sections">export print jobControls</param>
                    </module>
                  </module>
                </module>
              </module>
            </module>
          </module>
        </module>
      </module>
    </module>
  </module>
</view>

sideview
SplunkTrust
SplunkTrust

I'm afraid I can't reproduce any problem with this view, either in Firefox nor in Chrome 38.0.2125.104. The view loads fine in the Editor for me. I believe you though.

What version of Sideview Utils are you on? If it's several releases old, there have been a number of fixes to the Editor and maybe updating will resolve the problem. You can always see the release notes here - http://sideviewapps.com/apps/sideview-utils/release-notes/

and you can get on the mailing list (to get emailed those release notes whenever there's an update) here - http://sideviewapps.com/apps/sideview-utils/mailing-list/

I would also try updating Chrome to 38.X ?

0 Karma
Career Survey
First 500 qualified respondents will receive a $20 gift card! Tell us about your professional Splunk journey.

Can’t make it to .conf25? Join us online!

Get Updates on the Splunk Community!

Splunkbase Unveils New App Listing Management Public Preview

Splunkbase Unveils New App Listing Management Public PreviewWe're thrilled to announce the public preview of ...

Leveraging Automated Threat Analysis Across the Splunk Ecosystem

Are you leveraging automation to its fullest potential in your threat detection strategy?Our upcoming Security ...

Can’t Make It to Boston? Stream .conf25 and Learn with Haya Husain

Boston may be buzzing this September with Splunk University and .conf25, but you don’t have to pack a bag to ...