ExtendedData is not visible on the popup of the object in the globe of Google Earth - kml

ExtendedData datatable is no more visible on the popup of the object in the globe of Google Earth, is it normal ?
i would like to show the datatable in the description tag popup

If no description is present in a KML placemark then the extended data will be formatted into an HTML table with one row per data item with the name in the first column and the value in the second.
If a placemark has a description element then the extended data will not be visible.
This KML placemark has both a description and extended data. The text of the description this is an example will appear in the popup balloon in Google Earth. The description element overrides display of the extended data.
<Placemark>
<name>Club house</name>
<description>this is an example</description>
<ExtendedData>
<Data name="city_district">
<value>123</value>
</Data>
<Data name="population">
<value>40000</value>
</Data>
</ExtendedData>
</Placemark>

Related

Resolve stimulsoft Problems

I want to calculate the creditor and debtor amounts for each currency and show them at the bottom of the table, but no matter how much I searched, nothing was found. Can anyone help me?
enter image description here
1- You can use summary of text box in footer band or footer page
2- You can use expression of text box in footer band or footer page

How to get editing text box to expand to fit size of string field

I've noticed that in the Employee Time Cards screen (EP305000) in the details tab, there is a field called 'Summary' (In the DAC it's 'Subject') - and when you double click to edit the field, the edit area expands to show the entire text to be edited.
I have a custom screen with a grid, and this grid has text fields which I would like to have the same property as the Employee Time Card 'Subject' field (as described above), namely that when you enter the field to edit, it expands to show the entire text.
I've looked at the source DAC for the grid in EP305000, and I don't see anything that jumps out at me as an attribute on the 'Subject' field for that sort of thing.
Any help would be appreciated.
Added a RowTemplate to the Grid area for the two fields I wanted to make expanded, as follows:
<RowTemplate>
<px:PXTextEdit ID="PXTextEdit1" runat="server" DataField="TodoDescription"/>
<px:PXTextEdit ID="PXTextEdit2" runat="server" DataField="Comments"/>
</RowTemplate>
This did the trick. Thanks to HB_ACUMATICA for the answer.

KML description overshadows ExtendedData

I have a placemark feature containing some ExtendedData fields as a KML file. I would also like to include a description for this placemark, and have both the description and the ExtendedData appear in the balloon for the placemark.
The problem is, when I bring any modification to the description, all ExtendedData fields disappear, and are replaced by the newly entered description. However I know they are still there because when I copy the placemark into a text editor I can see that both tags are still there.
Is there any way to have both the description and the placemark appear in the balloon at the same time?
Google Earth displays the extended data fields formatted as HTML-table in the pop-up description box only when the description field of the placemark or feature is missing. If a feature contains a description then that description text is what is displayed when a user clicks on that feature in a pop-up description box.
If you want to have both extended data fields and a custom description then you can either 1) duplicate the data in the description or 2) use a shared BallonStyle with the ExtendedData names as placeholders in a template.
Here is a simple example of using ExtendedData with a BalloonStyle:
http://kml-samples.googlecode.com/svn/trunk/kml/ExtendedData/data-golf.kml
Tutorial including using the BalloonStyle element as a template:
https://developers.google.com/kml/documentation/extendeddata

Excel Ribbon XML how to do a control like the Excel "Pivot Table" control

I would like to create a Control like the Pivot-Table in an Add-In XML ribbon.
It's like a clickable button at the top and a dropdown Label opening a menu.
Using the VSTO ribbon designer I am not able to reproduce it.
In fact what I need is the XML for this control.
Any idea ?
You're seeing a splitButton control, which needs to have exactly two children:
a button or toggleButton, and
a menu.
In this case the splitButton has an image set (the pivot table picture) and a child button (with the label 'PivotTable'). The menu then has two children, the two buttons below called PivotTable and PivotChart.
An xml fragment might look like this:
<splitButton id='split' size='large'>
<button id='splitButton' label='SplitButton' image='M' />
<menu id='splitMenu' >
<button id='splitMenuButton1' label='SplitMenuButton1' />
<button id='splitMenuButton2' label='SplitMenuButton2' />
</menu>
</splitButton>
giving me this in Excel:

SSRS One Page Per Row

I created a new report with a datasource that is returning 100 rows.
In the layout I just drag over a few columns in, no toolbox control. But in preview and deploy I only get one page output with the first row.
What exactly do I need to do so that it renders One Page Per Row?
Not sure if it matters, but my data source is a SharePoint list Web service and I'm using a CAML Query to select data. I do see the records in the Data section in design mode.
<Query>
<SoapAction>http://schemas.microsoft.com/sharepoint/soap/GetListItems</SoapAction>
<Method Namespace="http://schemas.microsoft.com/sharepoint/soap/"
Name="GetListItems">
<Parameters>
<Parameter Name="listName">
<DefaultValue>{xxxxxxxxxxxxxxxxxxxx}</DefaultValue>
</Parameter>
</Parameters>
</Method>
<ElementPath IgnoreNamespaces="True">*</ElementPath>
</Query>
When you drag a field onto a blank area of the report, BIDS creates a textbox and then inserts an aggregate function (SUM or FIRST depending on field type, I think.)
It sounds like the best way to get what you want will be to first drag a List from the toolbox, then layout your textfields inside the rectangle.
Now insert page breaks by right clicking on the (Details) row group (lower pane of BIDS window.) Select Group Properties.
In the resulting dialog, go to Page Breaks and select the check box for Between each instance of a group.

Resources