filemaker

Nesting xsl templates and referring multiple templates to the same node?

我是研究僧i 提交于 2021-02-05 12:10:44
问题 This is my first post :) I'll try to be clear and nice, thank you in advance for any help! And I apologize that this question is convoluted. :| Any friendly hints on how to better ask the question will be appreciated too! This is a reduced version of the xml source file I have: <?xml version="1.0" encoding="UTF-8"?> <FMPDSORESULT xmlns="http://www.filemaker.com/fmpdsoresult"> <ERRORCODE>0</ERRORCODE> <DATABASE>FTP XML.fmp12</DATABASE> <LAYOUT> </LAYOUT> <ROW MODID="0" RECORDID="1151"> <EDI

Nesting xsl templates and referring multiple templates to the same node?

旧时模样 提交于 2021-02-05 12:10:11
问题 This is my first post :) I'll try to be clear and nice, thank you in advance for any help! And I apologize that this question is convoluted. :| Any friendly hints on how to better ask the question will be appreciated too! This is a reduced version of the xml source file I have: <?xml version="1.0" encoding="UTF-8"?> <FMPDSORESULT xmlns="http://www.filemaker.com/fmpdsoresult"> <ERRORCODE>0</ERRORCODE> <DATABASE>FTP XML.fmp12</DATABASE> <LAYOUT> </LAYOUT> <ROW MODID="0" RECORDID="1151"> <EDI

Flutter request Filemaker API (FieldData)

蹲街弑〆低调 提交于 2020-08-10 19:34:08
问题 Im trying to access one specific call to the filemaker API, I have several requests which are working.. but if i try to do one with the fieldData field it doesn't work var body = {"fieldData": { "testId": myId }}; HttpClient httpClient = new HttpClient(); HttpClientRequest request = await httpClient.postUrl(Uri.parse(url)); request.headers.set('content-type', 'application/json'); request.headers.add('authorization', 'bearer $token'); request.add(utf8.encode(json.encode(body)));

Flutter Filemaker API _find request

我的未来我决定 提交于 2020-08-10 19:12:07
问题 Im trying to make a http-request to Filemaker with Flutter(package:http/http.dart) I can get the token normally, but if i try the make an _find request to Filemaker it always get's rejected( 400 Bad Request ) without any message. In Postman I can do the exact same request without issue! var body = { "query":[{ "loginName": "==testUser@test.com" }]}; Response response = await post(url, headers: { HttpHeaders.authorizationHeader: 'Bearer $token', HttpHeaders.contentTypeHeader: 'application/json

importing complex XML data into multiple FileMaker tables

六眼飞鱼酱① 提交于 2020-07-04 03:29:05
问题 I understand the basics of import to FileMaker (csv, xml) and I know a little about XSLT. I have a data set containing lists that I need to import into FileMaker. There are 3 tables for this - the main table, the datapoints table and the positions table. My data looks like this: <?xml version="1.0" encoding="ISO-8859-1"?> <result> <data mode="test" ram="on"> 33,869 34,115 46,074 225,233, E 226,122, E 235,763, E 237,408, E 237,722, E 242,503 256,271 273,741 </data> <statistics> <positions>

Export and Import date from/into current record only in FileMaker 18

ぃ、小莉子 提交于 2020-06-17 15:52:06
问题 I have a FileMaker 18 database that interfaces with an external software. To do so, I need to do the following and can't figure it out: export selected data from the currently active record (and only that record) import data that's related to the current record into several tables In the UI I have two buttons, one to export, one to import. What I can't figure out is: how to export only the current record, no others? (I managed to get an export, but of all the data in the table) how to have a

Export and Import date from/into current record only in FileMaker 18

萝らか妹 提交于 2020-06-17 15:51:13
问题 I have a FileMaker 18 database that interfaces with an external software. To do so, I need to do the following and can't figure it out: export selected data from the currently active record (and only that record) import data that's related to the current record into several tables In the UI I have two buttons, one to export, one to import. What I can't figure out is: how to export only the current record, no others? (I managed to get an export, but of all the data in the table) how to have a

How to create installer for mac software

最后都变了- 提交于 2020-03-25 04:11:16
问题 I've created software using Filemaker and I have to create an installer. I already done it for Windows but I have to create one for Mac too. The installer will be able to install the software, install a font and ask the serial number. Can someone help me? 回答1: I think Apple used to (still does?) offer a program with Xcode that was called PackageMaker, but I don't think they still do. It might be available from a previous version of Xcode. I found surprisingly little information about it